Changeset 153 for trunk/archive/pslib/include/psFunctions.h
- Timestamp:
- Mar 9, 2004, 12:28:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psFunctions.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psFunctions.h
r149 r153 6 6 /* Standard Functions */ 7 7 8 /* Gaussian */ 9 /* Note that this is not a Gaussian deviate */ 8 /** Gaussian. Note that this is not a Gaussian deviate */ 10 9 float 11 psGaussian(float x, // Value at which to evaluate12 float mean, // Mean for the Gaussian13 float stddev // Standard deviation for the Gaussian10 psGaussian(float x, //!< Value at which to evaluate 11 float mean, //!< Mean for the Gaussian 12 float stddev //!< Standard deviation for the Gaussian 14 13 ); 15 14 16 /* Polynomial: one dimension */15 /** Polynomial: one dimension */ 17 16 float 18 psPolynomial1d(float x, // Value at which to evaluate19 const psFloatArray *restrict coeffs // Coefficients for the polynomial17 psPolynomial1d(float x, //!< Value at which to evaluate 18 const psFloatArray *restrict coeffs //!< Coefficients for the polynomial 20 19 ); 21 20 22 /* Polynomial: two dimensions */21 /** Polynomial: two dimensions */ 23 22 float 24 psPolynomial2d(float x, // Value x at which to evaluate25 float y, // Value y at which to evaluate26 int orderx, // Polynomial order in x27 int ordery, // Polynomial order in y28 const psFloatArray *coeffs // Coefficients for the polynomial23 psPolynomial2d(float x, //!< Value x at which to evaluate 24 float y, //!< Value y at which to evaluate 25 int orderx, //!< Polynomial order in x 26 int ordery, //!< Polynomial order in y 27 const psFloatArray *coeffs //!< Coefficients for the polynomial 29 28 ); 30 29
Note:
See TracChangeset
for help on using the changeset viewer.
