Changeset 257 for trunk/archive/pslib/include/psStats.h
- Timestamp:
- Mar 18, 2004, 9:37:58 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psStats.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psStats.h
r249 r257 70 70 71 71 72 /** Do Statistics on an array. Returns a status value. */72 /** Do Statistics on an array. Returns a status value. \ingroup MathGroup */ 73 73 psStats * 74 74 psArrayStats(const psFloatArray *restrict myArray, //!< Array to be analysed … … 81 81 /***********************************************************************************************************/ 82 82 83 /** Histograms */83 /** Histograms */ 84 84 typedef struct { 85 85 const psFloatArray *restrict lower; //!< Lower bounds for the bins … … 90 90 } psHistogram; 91 91 92 /** Constructor */92 /** Constructor \ingroup MathGroup */ 93 93 psHistogram * 94 94 psHistogramAlloc(float lower, //!< Lower limit for the bins … … 97 97 ); 98 98 99 /** Generic constructor */99 /** Generic constructor \ingroup MathGroup */ 100 100 psHistogram * 101 101 psHistogramAllocGeneric(const psFloatArray *restrict lower, //!< Lower bounds for the bins … … 105 105 ); 106 106 107 /** Destructor */107 /** Destructor \ingroup MathGroup **/ 108 108 void 109 109 psHistogramFree(psHistogram *restrict myHist //!< Histogram to destroy … … 111 111 112 112 113 /** Calculate a histogram */113 /** Calculate a histogram \ingroup MathGroup **/ 114 114 psHistogram * 115 115 psGetArrayHistogram(psHistogram *restrict myHist, //!< Histogram data
Note:
See TracChangeset
for help on using the changeset viewer.
