IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 17, 2006, 3:20:51 PM (20 years ago)
Author:
Paul Price
Message:

Cleaning up code in psStats.c and psMathUtils.[ch]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMathUtils.h

    r6437 r7132  
    77 *  @author GLG, MHPCC
    88 *
    9  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-02-17 00:56:48 $
     9 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-05-18 01:20:51 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3434 */
    3535psS32 p_psVectorBinDisect(
    36     psVector *bins,                    ///< Array of non-decreasing values
    37     psScalar *x                        ///< Target value to find
     36    const psVector *bins,               ///< Array of non-decreasing values
     37    const psScalar *x                   ///< Target value to find
    3838);
    3939
     
    4444 */
    4545psScalar *p_psVectorInterpolate(
    46     psScalar *out,
    47     psVector *domain,                  ///< Domain (x coords) for interpolation
    48     psVector *range,                   ///< Range (y coords) for interpolation
    49     psS32 order,                       ///< Order of interpolation function
    50     psScalar *x                        ///< Location at which to evaluate
     46    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
    5151);
    5252
    53 psS32 p_psNormalizeVectorRange(psVector* myData,
    54                                psF64 outLow,
    55                                psF64 outHigh);
     53bool p_psNormalizeVectorRange(psVector* myData,
     54                              psF64 outLow,
     55                              psF64 outHigh);
    5656
    5757/** \} */ // End of MathGroup Functions
Note: See TracChangeset for help on using the changeset viewer.