Changeset 6305 for trunk/psLib/src/math/psStats.h
- Timestamp:
- Feb 2, 2006, 11:09:08 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psStats.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psStats.h
r6215 r6305 14 14 * @author GLG, MHPCC 15 15 * 16 * @version $Revision: 1. 49$ $Name: not supported by cvs2svn $17 * @date $Date: 2006-0 1-26 23:49:11$16 * @version $Revision: 1.50 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2006-02-02 21:09:08 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 202 202 ); 203 203 204 // XXX: Create a single, generic, version of the vector normalize function.205 // XXX: Ask IfA for a public psLib function.206 207 /** Normalize the range of a vector containing U8 values */208 void p_psNormalizeVectorRangeU8(209 psVector* myData, ///< Vector containing the U8 values210 psU8 low, ///< Minimum value211 psU8 high ///< Maximum value212 );213 214 /** Normalize the range of a vector containing U16 values */215 void p_psNormalizeVectorRangeU16(216 psVector* myData, ///< Vector containing the U16 values217 psU16 low, ///< Minimum value218 psU16 high ///< Maximum value219 );220 221 /** Normalize the range of a vector containing U32 values */222 void p_psNormalizeVectorRangeU32(223 psVector* myData, ///< Vector containing the U32 values224 psU32 low, ///< Minimum value225 psU32 high ///< Maximum value226 );227 228 /** Normalize the range of a vector containing U64 values */229 void p_psNormalizeVectorRangeU64(230 psVector* myData, ///< Vector containing the U64 values231 psU64 low, ///< Minimum value232 psU64 high ///< Maximum value233 );234 235 /** Normalize the range of a vector containing S8 values */236 void p_psNormalizeVectorRangeS8(237 psVector* myData, ///< Vector containing the S8 values238 psS8 low, ///< Minimum value239 psS8 high ///< Maximum value240 );241 242 /** Normalize the range of a vector containing S16 values */243 void p_psNormalizeVectorRangeS16(244 psVector* myData, ///< Vector containing the S16 values245 psS16 low, ///< Minimum value246 psS16 high ///< Maximum value247 );248 249 /** Normalize the range of a vector containing S32 values */250 void p_psNormalizeVectorRangeS32(251 psVector* myData, ///< Vector containing the S32 values252 psS32 low, ///< Minimum value253 psS32 high ///< Maximum value254 );255 256 /** Normalize the range of a vector containing S64 values */257 void p_psNormalizeVectorRangeS64(258 psVector* myData, ///< Vector containing the S64 values259 psS64 low, ///< Minimum value260 psS64 high ///< Maximum value261 );262 263 /** Normalize the range of a vector containing F32 values */264 void p_psNormalizeVectorRangeF32(265 psVector* myData, ///< Vector containing the F32 values266 psF32 low, ///< Minimum value267 psF32 high ///< Maximum value268 );269 270 /** Normalize the range of a vector containing F64 values */271 void p_psNormalizeVectorRangeF64(272 psVector* myData, ///< Vector containing the F64 values273 psF64 low, ///< Minimum value274 psF64 high ///< Maximum value275 );276 277 204 /// @} 278 205
Note:
See TracChangeset
for help on using the changeset viewer.
