IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 20, 2005, 5:01:37 PM (21 years ago)
Author:
drobbin
Message:

* empty log message *

File:
1 edited

Legend:

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

    r4315 r4330  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.109 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-06-18 02:30:49 $
     9 *  @version $Revision: 1.110 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-06-21 03:01:37 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    18221822XXX: What should be the defualty type for knots be?  psF32 is assumed.
    18231823 *****************************************************************************/
    1824 psSpline1D *psSpline1DAlloc(psS32 numSplines,
    1825                             psS32 order,
    1826                             psF32 min,
    1827                             psF32 max)
     1824psSpline1D *psSpline1DAlloc(int numSplines,
     1825                            int order,
     1826                            float min,
     1827                            float max)
    18281828{
    18291829    PS_ASSERT_INT_NONNEGATIVE(numSplines, NULL);
     
    18671867 *****************************************************************************/
    18681868psSpline1D *psSpline1DAllocGeneric(const psVector *bounds,
    1869                                    psS32 order)
     1869                                   int order)
    18701870{
    18711871    PS_ASSERT_VECTOR_NON_NULL(bounds, NULL);
     
    21252125psF64.
    21262126 *****************************************************************************/
    2127 psF32 psSpline1DEval(
     2127float psSpline1DEval(
    21282128    const psSpline1D *spline,
    2129     psF32 x
     2129    float x
    21302130)
    21312131{
Note: See TracChangeset for help on using the changeset viewer.