Changeset 247 for trunk/archive/pslib/include/psStats.h
- Timestamp:
- Mar 15, 2004, 3:20:03 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psStats.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psStats.h
r226 r247 2 2 #define PS_STATS_H 3 3 4 /* Include standard arrays */ 5 #include "psStdArrays.h" 4 /** \file psStats.h 5 * \brief basic statistical operations 6 * \ingroup MathGroup 7 */ 6 8 9 /** statistics which may be calculated */ 7 10 typedef enum { 8 11 PS_STAT_SAMPLE_MEAN = 0x000001, … … 73 76 /** Histograms */ 74 77 typedef struct { 75 const psFloatArray *restrict lower, *restrict upper; //!< Lower and upper bounds for the bins 78 const psFloatArray *restrict lower; //!< Lower bounds for the bins 79 const psFloatArray *restrict upper; //!< Upper bounds for the bins 76 80 psIntArray *nums; //!< Number in each of the bins 77 81 const float minVal, maxVal; //!< Minimum and maximum values 78 82 int minNum, maxNum; //!< Number below the minimum and above the maximum 79 83 } psHistogram; 80 81 84 82 85 /** Constructor */
Note:
See TracChangeset
for help on using the changeset viewer.
