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/psMinimise.h

    r149 r153  
    77/* Minimisation */
    88
    9 /* Minimise a particular function */
     9/** Minimise a particular function */
    1010psFloatArray *
    11 psMinimise(float (*myFunction)(const psFloatArray *restrict),   // Function to minimise
    12            psFloatArray *restrict initialGuess // Initial guess
     11psMinimise(float (*myFunction)(const psFloatArray *restrict),   //!< Function to minimise
     12           psFloatArray *restrict initialGuess //!< Initial guess
    1313           );
    1414
    1515
    16 /* Minimise chi^2 for input data */
     16/** Minimise chi^2 for input data */
    1717psFloatArray *
    1818psMinimiseChi2(float (*evalModel)(const psFloatArray *restrict,
    19                                   const psFloatArray *restrict), // Model to fit; receives domain and
    20                                                                    // parameters
    21                const psFloatArray *restrict domain, // The domain values for the corresponding measurements
    22                const psFloatArray *restrict data, // Data to fit
    23                const psFloatArray *restrict errors, // Errors in the data
    24                psFloatArray *restrict initialGuess, // Initial guess
    25                const psIntArray *restrict guessMask // 1 = fit for parameter, 0 = hold parameter constant
     19                                  const psFloatArray *restrict), //!< Model to fit; receives domain and
     20                                                                 //!< parameters
     21               const psFloatArray *restrict domain, //!< The domain values for the corresponding measurements
     22               const psFloatArray *restrict data, //!< Data to fit
     23               const psFloatArray *restrict errors, //!< Errors in the data
     24               psFloatArray *restrict initialGuess, //!< Initial guess
     25               const psIntArray *restrict guessMask //!< 1 = fit for parameter, 0 = hold parameter constant
    2626               );
    2727
    28 /* Derive a polynomial that goes through the points --- can be done analytically */
     28/** Derive a polynomial that goes through the points --- can be done analytically */
    2929psFloatArray *
    30 psGetArrayPolynomial(const psFloatArray *restrict ord, // Ordinates (or NULL to just use the indices)
    31                      const psFloatArray *restrict coord // Coordinates
     30psGetArrayPolynomial(const psFloatArray *restrict ord, //!< Ordinates (or NULL to just use the indices)
     31                     const psFloatArray *restrict coord //!< Coordinates
    3232    );
    3333
Note: See TracChangeset for help on using the changeset viewer.