IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 4, 2005, 10:51:20 AM (21 years ago)
Author:
gusciora
Message:

...

File:
1 edited

Legend:

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

    r3264 r3374  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.89 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-02-17 19:26:23 $
     9 *  @version $Revision: 1.90 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-03-04 20:51:20 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    12061206    PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F32, NULL);
    12071207
    1208     psVector *tmp = NULL;
    1209     psVector *myX = NULL;
     1208    psVector *tmp;
     1209    psVector *myX;
    12101210    psS32 i;
    12111211
     
    12481248    PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F32, NULL);
    12491249
    1250     psVector *tmp = NULL;
    1251     psVector *myX = NULL;
    1252     psVector *myY = NULL;
     1250    psVector *tmp;
     1251    psVector *myX;
     1252    psVector *myY;
    12531253    psS32 i;
    12541254    psS32 vecLen=x->n;
     
    13061306    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL);
    13071307
    1308     psVector *tmp = NULL;
    1309     psVector *myX = NULL;
    1310     psVector *myY = NULL;
    1311     psVector *myZ = NULL;
     1308    psVector *tmp;
     1309    psVector *myX;
     1310    psVector *myY;
     1311    psVector *myZ;
    13121312    psS32 i;
    13131313    psS32 vecLen=x->n;
     
    13741374    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F32, NULL);
    13751375
    1376     psVector *tmp = NULL;
    1377     psVector *myW = NULL;
    1378     psVector *myX = NULL;
    1379     psVector *myY = NULL;
    1380     psVector *myZ = NULL;
     1376    psVector *tmp;
     1377    psVector *myW;
     1378    psVector *myX;
     1379    psVector *myY;
     1380    psVector *myZ;
    13811381    psS32 i;
    13821382    psS32 vecLen=x->n;
     
    16071607    PS_VECTOR_CHECK_TYPE(x, PS_TYPE_F64, NULL);
    16081608
    1609     psVector *tmp = NULL;
    1610     psVector *myX = NULL;
     1609    psVector *tmp;
     1610    psVector *myX;
    16111611    psS32 i;
    16121612
     
    16521652    PS_VECTOR_CHECK_TYPE(y, PS_TYPE_F64, NULL);
    16531653
    1654     psVector *tmp = NULL;
    1655     psVector *myX = NULL;
    1656     psVector *myY = NULL;
     1654    psVector *tmp;
     1655    psVector *myX;
     1656    psVector *myY;
    16571657    psS32 i;
    16581658    psS32 vecLen=x->n;
     
    17141714    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL);
    17151715
    1716     psVector *tmp = NULL;
    1717     psVector *myX = NULL;
    1718     psVector *myY = NULL;
    1719     psVector *myZ = NULL;
     1716    psVector *tmp;
     1717    psVector *myX;
     1718    psVector *myY;
     1719    psVector *myZ;
    17201720    psS32 i;
    17211721    psS32 vecLen=x->n;
     
    17861786    PS_VECTOR_CHECK_TYPE(z, PS_TYPE_F64, NULL);
    17871787
    1788     psVector *tmp = NULL;
    1789     psVector *myW = NULL;
    1790     psVector *myX = NULL;
    1791     psVector *myY = NULL;
    1792     psVector *myZ = NULL;
     1788    psVector *tmp;
     1789    psVector *myW;
     1790    psVector *myX;
     1791    psVector *myY;
     1792    psVector *myZ;
    17931793    psS32 i;
    17941794    psS32 vecLen=x->n;
Note: See TracChangeset for help on using the changeset viewer.