Changeset 4162 for trunk/psLib/src/math/psStats.h
- Timestamp:
- Jun 8, 2005, 1:40:46 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psStats.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psStats.h
r4138 r4162 14 14 * @author GLG, MHPCC 15 15 * 16 * @version $Revision: 1.4 1$ $Name: not supported by cvs2svn $17 * @date $Date: 2005-06-0 7 23:11:54$16 * @version $Revision: 1.42 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2005-06-08 23:40:45 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 20 20 */ 21 #if !defined(PS_STATS_H)21 #ifndef PS_STATS_H 22 22 #define PS_STATS_H 23 23 … … 112 112 /** The basic histogram structure which contains bounds and bins. 113 113 * 114 * In this structure, the vector bounds specifies the boundaries of the 115 * histogram bins, and must of type psF32, while nums specifies the number 116 * of entries in the bin, and must of type psU32. The value of bounds.n must 117 * therefore be 1 greater than than nums.n. The two values minNum and maxNum 118 * are the number of data values which fell below the lower limit bound or 114 * In this structure, the vector bounds specifies the boundaries of the 115 * histogram bins, and must of type psF32, while nums specifies the number 116 * of entries in the bin, and must of type psU32. The value of bounds.n must 117 * therefore be 1 greater than than nums.n. The two values minNum and maxNum 118 * are the number of data values which fell below the lower limit bound or 119 119 * above the upper limit bound, respectively. 120 120 */ … … 130 130 131 131 /** Allocator for psHistogram where the bounds of the bins are implicitly 132 * specified through simply specifying an upper and lower limit along with 133 * the size of the bins. 132 * specified through simply specifying an upper and lower limit along with 133 * the size of the bins. 134 134 * 135 135 * @return psHistogram* Newly allocated psHistogram … … 142 142 143 143 /** Allocator for psHistogram where the bounds of the bins are explicitly 144 * specified. 144 * specified. 145 145 * 146 146 * @return psHistogram* Newly allocated psHistogram … … 152 152 /** Calculate a histogram 153 153 * 154 * The following function populates the histogram bins from the specified 154 * The following function populates the histogram bins from the specified 155 155 * vector (in). It alters and returns the histogram out structure. The input 156 156 * vector may be of types psU8, psU16, psF32, psF64. … … 169 169 * 170 170 * @return psBool If more than one statistic result is set in stats->options, 171 * false is returned and the value parameter is not set, 171 * false is returned and the value parameter is not set, 172 172 * otherwise true is returned. 173 173 */ … … 193 193 /// @} 194 194 195 #endif 195 #endif // #ifndef PS_STATS_H
Note:
See TracChangeset
for help on using the changeset viewer.
