Changeset 42888 for trunk/psLib/src/math/psStats.h
- Timestamp:
- Jun 5, 2025, 3:30:24 PM (11 months ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psStats.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psStats.h
r31152 r42888 1 1 2 /* @file psStats.h 2 3 * @brief basic statistical operations … … 43 44 PS_STAT_FITTED_MEAN = 0x001000, ///< Fitted Mean 44 45 PS_STAT_FITTED_STDEV = 0x002000, ///< Fitted Standard Deviation 46 PS_STAT_CLIPPED_MEDIAN = 0x020000, ///< Clipped Median 45 47 PS_STAT_CLIPPED_MEAN = 0x040000, ///< Clipped Mean 46 48 PS_STAT_CLIPPED_STDEV = 0x080000, ///< Clipped Standard Deviation … … 70 72 long fittedNfit; ///< Number of points in Gaussian fit; XXX: This is currently unused 71 73 double clippedMean; ///< Nsigma clipped mean 74 double clippedMedian; ///< Nsigma clipped median 72 75 double clippedStdev; ///< standard deviation after clipping 73 76 long clippedNvalues; ///< Number of data points used for clipped mean. … … 90 93 */ 91 94 bool psVectorStats( 92 psStats *stats, ///< stats structure defines stats to be calculated and how95 psStats *stats, ///< stats structure defines stats to be calculated and how 93 96 const psVector* in, ///< Vector to be analysed. 94 97 const psVector* errors, ///< Errors. … … 103 106 */ 104 107 #ifdef DOXYGEN 105 psStats *psStatsAlloc(108 psStats *psStatsAlloc( 106 109 psStatsOptions options ///< Statistics to calculate 107 110 ); 108 111 #else // ifdef DOXYGEN 109 psStats *p_psStatsAlloc(112 psStats *p_psStatsAlloc( 110 113 const char *file, ///< File of caller 111 114 unsigned int lineno, ///< Line number of caller
Note:
See TracChangeset
for help on using the changeset viewer.
