IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2005, 2:54:13 PM (21 years ago)
Author:
desonia
Message:

Added SWIG and autoconf.

File:
1 edited

Legend:

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

    r3097 r3115  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.103 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-01-26 20:47:41 $
     11 *  @version $Revision: 1.104 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-02-03 00:54:10 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    9696XXX: do an F64 version?
    9797 *****************************************************************************/
    98 psF32 *CalculateSecondDerivs(const psVector* restrict x,        ///< Ordinates (or NULL to just use the indices)
    99                              const psVector* restrict y)        ///< Coordinates
     98psF32 *CalculateSecondDerivs(const psVector* x,        ///< Ordinates (or NULL to just use the indices)
     99                             const psVector* y)        ///< Coordinates
    100100{
    101101    psTrace(".psLib.dataManip.CalculateSecondDerivs", 4,
     
    167167/*
    168168psF32 p_psNRSpline1DEval(psSpline1D *spline,
    169                          const psVector* restrict x,
    170                          const psVector* restrict y,
     169                         const psVector* x,
     170                         const psVector* y,
    171171                         psF32 X)
    172172{
     
    250250XXX: Assumes mySpline->knots is psF32.  Must add psU32 and psF64.
    251251 *****************************************************************************/
    252 psSpline1D *psVectorFitSpline1D(psSpline1D *mySpline,              ///< The spline which will be generated.
    253                                 const psVector* restrict x,        ///< Ordinates (or NULL to just use the indices)
    254                                 const psVector* restrict y,        ///< Coordinates
    255                                 const psVector* restrict yErr)     ///< Errors in coordinates, or NULL
     252psSpline1D *psVectorFitSpline1D(psSpline1D *mySpline,     ///< The spline which will be generated.
     253                                const psVector* x,        ///< Ordinates (or NULL to just use the indices)
     254                                const psVector* y,        ///< Coordinates
     255                                const psVector* yErr)     ///< Errors in coordinates, or NULL
    256256{
    257257    PS_VECTOR_CHECK_NULL(y, NULL);
     
    833833*****************************************************************************/
    834834psPolynomial1D *VectorFitPolynomial1DCheby(psPolynomial1D* myPoly,
    835         const psVector* restrict x,
    836         const psVector* restrict y,
    837         const psVector* restrict yErr)
     835        const psVector* x,
     836        const psVector* y,
     837        const psVector* yErr)
    838838{
    839839    psS32 j;
     
    911911 *****************************************************************************/
    912912psPolynomial1D* VectorFitPolynomial1DOrd(psPolynomial1D* myPoly,
    913         const psVector* restrict x,
    914         const psVector* restrict y,
    915         const psVector* restrict yErr)
     913        const psVector* x,
     914        const psVector* y,
     915        const psVector* yErr)
    916916{
    917917    psS32 polyOrder = myPoly->n;
     
    10181018 *****************************************************************************/
    10191019psPolynomial1D* psVectorFitPolynomial1D(psPolynomial1D* myPoly,
    1020                                         const psVector* restrict x,
    1021                                         const psVector* restrict y,
    1022                                         const psVector* restrict yErr)
     1020                                        const psVector* x,
     1021                                        const psVector* y,
     1022                                        const psVector* yErr)
    10231023{
    10241024    PS_POLY_CHECK_NULL(myPoly, NULL);
Note: See TracChangeset for help on using the changeset viewer.