IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 29, 2004, 12:15:51 PM (22 years ago)
Author:
gusciora
Message:

Changed order of spline eval.

File:
1 edited

Legend:

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

    r2791 r2847  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.77 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-12-22 23:09:40 $
     9 *  @version $Revision: 1.78 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-12-29 22:15:51 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    21422142 *****************************************************************************/
    21432143psF32 psSpline1DEval(
    2144     psF32 x,
    2145     const psSpline1D *spline
     2144    const psSpline1D *spline,
     2145    psF32 x
    21462146)
    21472147{
     
    21912191        for (i=0;i<x->n;i++) {
    21922192            tmpVector->data.F32[i] = psSpline1DEval(
    2193                                          x->data.F32[i],
    2194                                          spline
     2193                                         spline,
     2194                                         x->data.F32[i]
    21952195                                     );
    21962196        }
     
    21982198        for (i=0;i<x->n;i++) {
    21992199            tmpVector->data.F32[i] = psSpline1DEval(
    2200                                          (psF32) x->data.F64[i],
    2201                                          spline
     2200                                         spline,
     2201                                         (psF32) x->data.F64[i]
    22022202                                     );
    22032203        }
Note: See TracChangeset for help on using the changeset viewer.