Changeset 5294 for trunk/psLib/src/math/psPolynomial.h
- Timestamp:
- Oct 12, 2005, 11:02:20 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psPolynomial.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.h
r5090 r5294 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.5 7$ $Name: not supported by cvs2svn $14 * @date $Date: 2005- 09-22 02:47:16$13 * @version $Revision: 1.58 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-10-12 21:02:20 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 76 76 { 77 77 psPolynomialType type; ///< Polynomial type 78 unsigned int COOL_1D_n; ///< Polynomial order78 unsigned int nX; ///< Polynomial order 79 79 psF64 *coeff; ///< Coefficients 80 80 psF64 *coeffErr; ///< Error in coefficients … … 90 90 { 91 91 psPolynomialType type; ///< Polynomial type 92 unsigned int COOL_2D_nX; ///< Polynomial order in x93 unsigned int COOL_2D_nY; ///< Polynomial order in y92 unsigned int nX; ///< Polynomial order in x 93 unsigned int nY; ///< Polynomial order in y 94 94 psF64 **coeff; ///< Coefficients 95 95 psF64 **coeffErr; ///< Error in coefficients … … 105 105 { 106 106 psPolynomialType type; ///< Polynomial type 107 unsigned int COOL_3D_nX; ///< Polynomial order in x108 unsigned int COOL_3D_nY; ///< Polynomial order in y109 unsigned int COOL_3D_nZ; ///< Polynomial order in z107 unsigned int nX; ///< Polynomial order in x 108 unsigned int nY; ///< Polynomial order in y 109 unsigned int nZ; ///< Polynomial order in z 110 110 psF64 ***coeff; ///< Coefficients 111 111 psF64 ***coeffErr; ///< Error in coefficients … … 121 121 { 122 122 psPolynomialType type; ///< Polynomial type 123 unsigned int COOL_4D_nX; ///< Polynomial order in x124 unsigned int COOL_4D_nY; ///< Polynomial order in y125 unsigned int COOL_4D_nZ; ///< Polynomial order in z126 unsigned int COOL_4D_nT; ///< Polynomial order in t123 unsigned int nX; ///< Polynomial order in x 124 unsigned int nY; ///< Polynomial order in y 125 unsigned int nZ; ///< Polynomial order in z 126 unsigned int nT; ///< Polynomial order in t 127 127 psF64 ****coeff; ///< Coefficients 128 128 psF64 ****coeffErr; ///< Error in coefficients
Note:
See TracChangeset
for help on using the changeset viewer.
