Changeset 31152 for trunk/psLib/test/optime
- Timestamp:
- Apr 4, 2011, 12:57:08 PM (15 years ago)
- Location:
- trunk/psLib
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
test/optime/tap_psStatsTiming.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib
- Property svn:ignore
-
old new 34 34 *.bbg 35 35 *.da 36 a.out.dSYM
-
- Property svn:ignore
-
trunk/psLib/test/optime/tap_psStatsTiming.c
r24572 r31152 678 678 psMemId id = psMemGetId(); 679 679 680 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN _V2 | PS_STAT_FITTED_STDEV_V2);680 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN | PS_STAT_FITTED_STDEV); 681 681 psVector *rnd2 = psVectorAlloc (1000, PS_TYPE_F32); 682 682 for (int i = 0; i < rnd2->n; i++) … … 702 702 psMemId id = psMemGetId(); 703 703 704 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN _V2 | PS_STAT_FITTED_STDEV_V2);704 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN | PS_STAT_FITTED_STDEV); 705 705 psVector *rnd2 = psVectorAlloc (3000, PS_TYPE_F32); 706 706 for (int i = 0; i < rnd2->n; i++) … … 725 725 psMemId id = psMemGetId(); 726 726 727 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN _V2 | PS_STAT_FITTED_STDEV_V2);727 psStats *stats = psStatsAlloc (PS_STAT_FITTED_MEAN | PS_STAT_FITTED_STDEV); 728 728 psVector *rnd2 = psVectorAlloc (10000, PS_TYPE_F32); 729 729 for (int i = 0; i < rnd2->n; i++) … … 790 790 psMemId id = psMemGetId(); 791 791 792 psStats *stats = psStatsAlloc (PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_ROBUST_MEDIAN | PS_STAT_ROBUST_STDEV | PS_STAT_FITTED_MEAN _V2 | PS_STAT_FITTED_STDEV_V2);792 psStats *stats = psStatsAlloc (PS_STAT_SAMPLE_MEAN | PS_STAT_SAMPLE_STDEV | PS_STAT_ROBUST_MEDIAN | PS_STAT_ROBUST_STDEV | PS_STAT_FITTED_MEAN | PS_STAT_FITTED_STDEV); 793 793 psVector *sample = psVectorAlloc (1000, PS_TYPE_F32); 794 794 psVector *robust = psVectorAlloc (1000, PS_TYPE_F32);
Note:
See TracChangeset
for help on using the changeset viewer.
