Changeset 609
- Timestamp:
- May 7, 2004, 12:13:43 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
r606 r609 83 83 /** Histograms */ 84 84 typedef struct { 85 const psFloatArray *restrict lower; ///< Lower bounds for the bins 86 const psFloatArray *restrict upper; ///< Upper bounds for the bins 85 const psFloatArray *restrict bounds; ///< Bounds for the bins 87 86 psIntArray *nums; ///< Number in each of the bins 88 87 const float minVal, maxVal; ///< Minimum and maximum values 89 88 int minNum, maxNum; ///< Number below the minimum and above the maximum 89 int uniform; ///< Is it a uniform distribution? 90 90 } psHistogram; 91 91 … … 94 94 psHistogramAlloc(float lower, ///< Lower limit for the bins 95 95 float upper, ///< Upper limit for the bins 96 float size ///< Sizeof the bins96 int n ///< Number of the bins 97 97 ); 98 98 99 99 /** Generic constructor \ingroup MathGroup */ 100 100 psHistogram * 101 psHistogramAllocGeneric(const psFloatArray *restrict lower, ///< Lower bounds for the bins 102 const psFloatArray *restrict upper, ///< Upper bounds for the bins 101 psHistogramAllocGeneric(const psFloatArray *restrict bounds, ///< Bounds for the bins 103 102 float minVal, ///< Minimum value 104 103 float maxVal ///< Maximum value
Note:
See TracChangeset
for help on using the changeset viewer.
