IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2006, 11:09:08 AM (20 years ago)
Author:
gusciora
Message:

This file contains some of the generic math functions which
were previously in psStats and psSpline and psMinimize.

File:
1 edited

Legend:

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

    r5517 r6305  
    1212 *  @author GLG, MHPCC
    1313 *
    14  *  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-11-15 20:10:32 $
     14 *  @version $Revision: 1.59 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2006-02-02 21:09:08 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9292);
    9393
    94 /** Performs a binary disection on a given vector.
    95  *  Searches through an array of data for a specified value.
    96  *
    97  *  @return psS32    corresponding index number of specified value
    98  */
    99 psS32 p_psVectorBinDisect(
    100     psVector *bins,                    ///< Array of non-decreasing values
    101     psScalar *x                        ///< Target value to find
    102 );
    103 
    104 /** Interpolates a series of data points for evaluation at a specific coordinate.  Uses a
    105  *  Lagrange interpolation method.
    106  *
    107  *  @return psScalar*    Lagrange interpolation value at given location
    108  */
    109 psScalar *p_psVectorInterpolate(
    110     psVector *domain,                  ///< Domain (x coords) for interpolation
    111     psVector *range,                   ///< Range (y coords) for interpolation
    112     psS32 order,                       ///< Order of interpolation function
    113     psScalar *x                        ///< Location at which to evaluate
    114 );
    115 
    11694/** \} */ // End of MathGroup Functions
    11795
Note: See TracChangeset for help on using the changeset viewer.