Changeset 39509
- Timestamp:
- Mar 31, 2016, 9:50:01 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFitsScale.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsScale.c
r37050 r39509 28 28 29 29 30 #define MEAN_STAT PS_STAT_ROBUST_MEDIAN // Statistic to use for mean 31 #define STDEV_STAT PS_STAT_ROBUST_STDEV // Statistic to use for stdev 30 // EAM 20160328 : I think ROBUST_MEDIAN & ROBUST_STDEV are too frequently wrong to use. 31 // SAMPLE_MEDIAN and SAMPLE_QUARTILE are probably safer in general. possible downsize: 32 // sample_median may be slow (does a sort) 33 34 //#define MEAN_STAT PS_STAT_ROBUST_MEDIAN // Statistic to use for mean 35 //#define STDEV_STAT PS_STAT_ROBUST_STDEV // Statistic to use for stdev 36 37 #define MEAN_STAT PS_STAT_SAMPLE_MEDIAN // Statistic to use for mean 38 #define STDEV_STAT PS_STAT_SAMPLE_QUARTILE // Statistic to use for stdev 32 39 33 40 #define DESPERATE_MEAN_STAT PS_STAT_SAMPLE_MEDIAN // Statistic to use for mean when deperate
Note:
See TracChangeset
for help on using the changeset viewer.
