Results 1 to 6 of 6
Thread: data in Database
-
09-02-2009, 03:30 AM #1
Freshman
- Join Date
- Sep 2009
- Posts
- 31
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
data in Database
How to quantize data in Database
-
09-30-2009, 01:54 AM #2
Junior
- Join Date
- Jun 2009
- Posts
- 434
- Thanks
- 1
- Thanked 3 Times in 3 Posts
- Feedback Score
- 0
quantize database in what sense ... can you just complete the sentence .... and full desc what is in your mind
-
10-23-2009, 04:24 AM #3
Junior
- Join Date
- Sep 2009
- Posts
- 193
- Thanks
- 1
- Thanked 2 Times in 2 Posts
- Feedback Score
- 0
-
10-23-2009, 10:13 AM #4
- Join Date
- Apr 2008
- Location
- Boston, USA
- Posts
- 13,175
- Thanks
- 744
- Thanked 699 Times in 550 Posts
- Blog Entries
- 4
- Feedback Score
- 4 (100%)
Quantizing Data with quantizer Objects
You construct a quantizer object to specify the quantization parameters to use when you quantize data sets. You can use the quantize function to quantize data according to a quantizer object's specifications.
Once you quantize data with a quantizer object, its state values might change.
The following example shows
- How you use quantize to quantize data
- How quantization affects quantizer object states
- How you reset quantizer object states to their default values using reset
- Construct an example data set and a quantizer object.
format long g
randn('state',0);
x = randn(100,4);
q = quantizer([16,14]); - Retrieve the values of the maxlog and noverflows states.
q.maxlog
ans =
-1.79769313486232e+308
q.noverflows
ans =
0Note that maxlog is equal to -realmax, which indicates that the quantizer q is in a reset state. - Quantize the data set according to the quantizer object's specifications.
y = quantize(q,x);
Warning: 15 overflows. - Check the values of maxlog and noverflows.
q.maxlog
ans =
1.99993896484375
q.noverflows
ans =
15Note that the maximum logged value was taken after quantization, that is, q.maxlog == max(y). - Reset the quantizer states and check them.
reset(q)
q.maxlog
ans =
-1.79769313486232e+308
q.noverflows
ans =
0
Source: Fixed-Point ToolboxFree Classified Ads & BUSINESS/PROFESSIONAL SOCIAL NETWORK
-
01-11-2010, 01:52 AM #5
Freshman
- Join Date
- Jan 2010
- Location
- India
- Posts
- 20
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
-
11-02-2010, 06:54 AM #6
Junior
- Join Date
- Oct 2010
- Posts
- 221
- Thanks
- 0
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
I can understand what u want to say ..........sorry
Similar Threads
-
How best ot optimize content?
By wujijiangjun in forum Search Engine OptimizationReplies: 13Last Post: 10-27-2011, 08:21 AM -
Google executive hired by Facebook for data center management
By mamedesign in forum GoogleReplies: 5Last Post: 04-27-2010, 10:35 PM -
[WTS] 32 Original MySQL Niche Content Databases On Sale (Industrial Data & Facts)
By immediate in forum ContentsReplies: 0Last Post: 12-22-2009, 09:51 PM -
Speed when pulling data from database
By buddhi225 in forum PHPReplies: 1Last Post: 05-28-2009, 08:24 AM -
US Bed and Breakfast Database (Complete) - 14.958 RECORDS
By indusLogic in forum ContentsReplies: 0Last Post: 08-20-2008, 06:17 PM


Reply With Quote

