Changeset 7132 for trunk/psLib/src/math/psMathUtils.h
- Timestamp:
- May 17, 2006, 3:20:51 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psMathUtils.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psMathUtils.h
r6437 r7132 7 7 * @author GLG, MHPCC 8 8 * 9 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 2-17 00:56:48$9 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-05-18 01:20:51 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 34 34 */ 35 35 psS32 p_psVectorBinDisect( 36 psVector *bins,///< Array of non-decreasing values37 psScalar *x///< Target value to find36 const psVector *bins, ///< Array of non-decreasing values 37 const psScalar *x ///< Target value to find 38 38 ); 39 39 … … 44 44 */ 45 45 psScalar *p_psVectorInterpolate( 46 psScalar *out, 47 psVector *domain,///< Domain (x coords) for interpolation48 psVector *range,///< Range (y coords) for interpolation49 psS32 order, ///< Order of interpolation function50 psScalar *x///< Location at which to evaluate46 psScalar *out, ///< Output scalar, or NULL 47 const psVector *domain, ///< Domain (x coords) for interpolation 48 const psVector *range, ///< Range (y coords) for interpolation 49 psS32 order, ///< Order of interpolation function 50 const psScalar *x ///< Location at which to evaluate 51 51 ); 52 52 53 psS32p_psNormalizeVectorRange(psVector* myData,54 psF64 outLow,55 psF64 outHigh);53 bool p_psNormalizeVectorRange(psVector* myData, 54 psF64 outLow, 55 psF64 outHigh); 56 56 57 57 /** \} */ // End of MathGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
