IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 11, 2005, 12:18:40 PM (21 years ago)
Author:
gusciora
Message:

....

File:
1 edited

Legend:

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

    r4969 r4991  
    1010 *  @author GLG, MHPCC
    1111 *
    12  *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-09-08 00:02:48 $
     12 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-09-11 22:18:40 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    118118);
    119119
     120/** Derive a one-dimensional spline fit.
     121 *
     122 *  Given a psSpline1D data structure and a set of x,y vectors, this routine
     123 *  generates the linear splines which satisfy those data points.
     124 *
     125 *  @return psSpline1D*:  the calculated one-dimensional splines
     126 */
     127psSpline1D *psVectorFitSpline1D(
     128    psSpline1D *mySpline,              ///< The spline which will be generated.
     129    const psVector* x,                 ///< Ordinates (or NULL to just use the indices)
     130    const psVector* y,                 ///< Coordinates
     131    const psVector* yErr               ///< Errors in coordinates, or NULL
     132);
     133
     134psSpline1D *psVectorFitSpline1DNEW(
     135    const psVector* x,                 ///< Ordinates (or NULL to just use the indices)
     136    const psVector* y,                 ///< Coordinates
     137    int nKnots
     138);
     139
    120140/** \} */ // End of MathGroup Functions
    121141
Note: See TracChangeset for help on using the changeset viewer.