IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    1313*  @author George Gusciora, MHPCC
    1414*
    15 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    16 *  @date $Date: 2004-08-09 22:44:25 $
     15*  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     16*  @date $Date: 2004-08-09 23:34:57 $
    1717*
    1818*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4242/** Produce a vector of random numbers from a Gaussian distribution with
    4343    the specified mean and sigma */
    44 psVector *psGaussianDev(float mean,     ///< The mean of the Gaussian
     44psVector* psGaussianDev(float mean,     ///< The mean of the Gaussian
    4545                        float sigma,    ///< The sigma of the Gaussian
    4646                        int Npts);      ///< The size of the vector
     
    9595
    9696/** Constructor */
    97 psPolynomial1D *psPolynomial1DAlloc(int n       ///< Number of terms
    98                                    );
    99 
    100 /** Constructor */
    101 psPolynomial2D *psPolynomial2DAlloc(int nX, int nY      ///< Number of terms in x and y
    102                                    );
    103 
    104 /** Constructor */
    105 psPolynomial3D *psPolynomial3DAlloc(int nX, int nY, int nZ      ///< Number of terms in x, y and z
    106                                    );
    107 
    108 /** Constructor */
    109 psPolynomial4D *psPolynomial4DAlloc(int nW, int nX, int nY, int nZ      ///< Number of terms in w, x, y and
     97psPolynomial1D* psPolynomial1DAlloc(int n       ///< Number of terms
     98                                   );
     99
     100/** Constructor */
     101psPolynomial2D* psPolynomial2DAlloc(int nX, int nY      ///< Number of terms in x and y
     102                                   );
     103
     104/** Constructor */
     105psPolynomial3D* psPolynomial3DAlloc(int nX, int nY, int nZ      ///< Number of terms in x, y and z
     106                                   );
     107
     108/** Constructor */
     109psPolynomial4D* psPolynomial4DAlloc(int nW, int nX, int nY, int nZ      ///< Number of terms in w, x, y and
    110110                                    // z
    111111                                   );
     
    113113/** Evaluate 1D polynomial */
    114114float psPolynomial1DEval(float x,       ///< Value at which to evaluate
    115                          const psPolynomial1D * myPoly  ///< Coefficients for the polynomial
     115                         const psPolynomial1D* myPoly  ///< Coefficients for the polynomial
    116116                        );
    117117
     
    119119float psPolynomial2DEval(float x,       ///< Value x at which to evaluate
    120120                         float y,       ///< Value y at which to evaluate
    121                          const psPolynomial2D * myPoly  ///< Coefficients for the polynomial
     121                         const psPolynomial2D* myPoly  ///< Coefficients for the polynomial
    122122                        );
    123123
     
    126126                         float y,       ///< Value y at which to evaluate
    127127                         float z,       ///< Value z at which to evaluate
    128                          const psPolynomial3D * myPoly  ///< Coefficients for the polynomial
     128                         const psPolynomial3D* myPoly  ///< Coefficients for the polynomial
    129129                        );
    130130
     
    134134                         float y,       ///< Value y at which to evaluate
    135135                         float z,       ///< Value z at which to evaluate
    136                          const psPolynomial4D * myPoly  ///< Coefficients for the polynomial
     136                         const psPolynomial4D* myPoly  ///< Coefficients for the polynomial
    137137                        );
    138138
     
    188188
    189189/** Constructor */
    190 psDPolynomial1D *psDPolynomial1DAlloc(int n     ///< Number of terms
    191                                      );
    192 
    193 /** Constructor */
    194 psDPolynomial2D *psDPolynomial2DAlloc(int nX, int nY    ///< Number of terms in x and y
    195                                      );
    196 
    197 /** Constructor */
    198 psDPolynomial3D *psDPolynomial3DAlloc(int nX, int nY, int nZ    ///< Number of terms in x, y and z
    199                                      );
    200 
    201 /** Constructor */
    202 psDPolynomial4D *psDPolynomial4DAlloc(int nW, int nX, int nY, int nZ    ///< Number of terms in w, x, y and
     190psDPolynomial1D* psDPolynomial1DAlloc(int n     ///< Number of terms
     191                                     );
     192
     193/** Constructor */
     194psDPolynomial2D* psDPolynomial2DAlloc(int nX, int nY    ///< Number of terms in x and y
     195                                     );
     196
     197/** Constructor */
     198psDPolynomial3D* psDPolynomial3DAlloc(int nX, int nY, int nZ    ///< Number of terms in x, y and z
     199                                     );
     200
     201/** Constructor */
     202psDPolynomial4D* psDPolynomial4DAlloc(int nW, int nX, int nY, int nZ    ///< Number of terms in w, x, y and
    203203                                      // z
    204204                                     );
     
    206206/** Evaluate 1D polynomial (double precision) */
    207207double psDPolynomial1DEval(double x,    ///< Value at which to evaluate
    208                            const psDPolynomial1D * myPoly       ///< Coefficients for the polynomial
     208                           const psDPolynomial1D* myPoly       ///< Coefficients for the polynomial
    209209                          );
    210210
     
    212212double psDPolynomial2DEval(double x,    ///< Value x at which to evaluate
    213213                           double y,    ///< Value y at which to evaluate
    214                            const psDPolynomial2D * myPoly       ///< Coefficients for the polynomial
     214                           const psDPolynomial2D* myPoly       ///< Coefficients for the polynomial
    215215                          );
    216216
     
    219219                           double y,    ///< Value y at which to evaluate
    220220                           double z,    ///< Value z at which to evaluate
    221                            const psDPolynomial3D * myPoly       ///< Coefficients for the polynomial
     221                           const psDPolynomial3D* myPoly       ///< Coefficients for the polynomial
    222222                          );
    223223
     
    227227                           double y,    ///< Value y at which to evaluate
    228228                           double z,    ///< Value z at which to evaluate
    229                            const psDPolynomial4D * myPoly       ///< Coefficients for the polynomial
     229                           const psDPolynomial4D* myPoly       ///< Coefficients for the polynomial
    230230                          );
    231231
Note: See TracChangeset for help on using the changeset viewer.