IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2006, 11:10:22 AM (20 years ago)
Author:
gusciora
Message:

Implemented the polynomial alloc argument changes.

File:
1 edited

Legend:

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

    r6186 r6204  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-01-23 22:25:31 $
     13 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-01-26 21:10:22 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    127127 */
    128128psPolynomial1D* psPolynomial1DAlloc(
    129     unsigned int n,                    ///< Number of terms
    130     psPolynomialType type              ///< Polynomial Type
     129    psPolynomialType type,             ///< Polynomial Type
     130    unsigned int nX                    ///< Number of terms
    131131);
    132132
     
    136136 */
    137137psPolynomial2D* psPolynomial2DAlloc(
     138    psPolynomialType type,             ///< Polynomial Type
     139    unsigned int nX,                   ///< Number of terms in x
     140    unsigned int nY                    ///< Number of terms in y
     141);
     142
     143/** Allocates a 3-D polynomial structure
     144 *
     145 *  @return  psPolynomial3D*    new 3-D polynomial struct
     146 */
     147psPolynomial3D* psPolynomial3DAlloc(
     148    psPolynomialType type,             ///< Polynomial Type
    138149    unsigned int nX,                   ///< Number of terms in x
    139150    unsigned int nY,                   ///< Number of terms in y
    140     psPolynomialType type              ///< Polynomial Type
    141 );
    142 
    143 /** Allocates a 3-D polynomial structure
    144  *
    145  *  @return  psPolynomial3D*    new 3-D polynomial struct
    146  */
    147 psPolynomial3D* psPolynomial3DAlloc(
     151    unsigned int nZ                    ///< Number of terms in z
     152);
     153
     154/** Allocates a 4-D polynomial structure
     155 *
     156 *  @return  psPolynomial4D*    new 4-D polynomial struct
     157 */
     158psPolynomial4D* psPolynomial4DAlloc(
     159    psPolynomialType type,             ///< Polynomial Type
    148160    unsigned int nX,                   ///< Number of terms in x
    149161    unsigned int nY,                   ///< Number of terms in y
    150162    unsigned int nZ,                   ///< Number of terms in z
    151     psPolynomialType type              ///< Polynomial Type
    152 );
    153 
    154 /** Allocates a 4-D polynomial structure
    155  *
    156  *  @return  psPolynomial4D*    new 4-D polynomial struct
    157  */
    158 psPolynomial4D* psPolynomial4DAlloc(
    159     unsigned int nX,                   ///< Number of terms in x
    160     unsigned int nY,                   ///< Number of terms in y
    161     unsigned int nZ,                   ///< Number of terms in z
    162     unsigned int nT,                   ///< Number of terms in t
    163     psPolynomialType type              ///< Polynomial Type
     163    unsigned int nT                    ///< Number of terms in t
    164164);
    165165
Note: See TracChangeset for help on using the changeset viewer.