IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 12:28:16 PM (22 years ago)
Author:
Paul Price
Message:

Doxygen-ated the source files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psFunctions.h

    r149 r153  
    66/* Standard Functions */
    77
    8 /* Gaussian */
    9 /* Note that this is not a Gaussian deviate */
     8/** Gaussian.  Note that this is not a Gaussian deviate */
    109float
    11 psGaussian(float x,                     // Value at which to evaluate
    12            float mean,                  // Mean for the Gaussian
    13            float stddev                 // Standard deviation for the Gaussian
     10psGaussian(float x,                     //!< Value at which to evaluate
     11           float mean,                  //!< Mean for the Gaussian
     12           float stddev                 //!< Standard deviation for the Gaussian
    1413           );
    1514
    16 /* Polynomial: one dimension */
     15/** Polynomial: one dimension */
    1716float
    18 psPolynomial1d(float x,                 // Value at which to evaluate
    19                const psFloatArray *restrict coeffs // Coefficients for the polynomial
     17psPolynomial1d(float x,                 //!< Value at which to evaluate
     18               const psFloatArray *restrict coeffs //!< Coefficients for the polynomial
    2019               );
    2120
    22 /* Polynomial: two dimensions */
     21/** Polynomial: two dimensions */
    2322float
    24 psPolynomial2d(float x,                 // Value x at which to evaluate
    25                float y,                 // Value y at which to evaluate
    26                int orderx,              // Polynomial order in x
    27                int ordery,              // Polynomial order in y
    28                const psFloatArray *coeffs // Coefficients for the polynomial
     23psPolynomial2d(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
    2928               );
    3029
Note: See TracChangeset for help on using the changeset viewer.