IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 24, 2004, 12:33:21 PM (22 years ago)
Author:
gusciora
Message:

Changed order of spline eval functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/dataManip/tst_psFunc07.c

    r2392 r2439  
    7070
    7171    psVectorFitSpline1D(tmpSpline, x, y, NULL);
    72     newY = psSpline1DEvalVector(newX, tmpSpline);
     72    newY = psSpline1DEvalVector(
     73               tmpSpline,
     74               newX
     75           );
    7376
    7477    for (i=OFFSET;i<NUM_SPLINES-OFFSET+1;i++) {
     
    139142
    140143    psVectorFitSpline1D(tmpSpline, x, y, NULL);
    141     newY = psSpline1DEvalVector(newX, tmpSpline);
     144    newY = psSpline1DEvalVector(
     145               tmpSpline,
     146               newX
     147           );
    142148
    143149    for (i=OFFSET;i<NUM_SPLINES-OFFSET+1;i++) {
Note: See TracChangeset for help on using the changeset viewer.