IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 334


Ignore:
Timestamp:
Mar 31, 2004, 12:46:38 PM (22 years ago)
Author:
Paul Price
Message:

Added errors for psGetArrayPolynomial.

File:
1 edited

Legend:

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

    r285 r334  
    1212 */
    1313
    14 /** Minimize a particular function */
     14/** Minimize a particular non-linear function */
    1515psFloatArray *
    1616psMinimize(float (*myFunction)(const psFloatArray *restrict),   //!< Function to minimize
     
    3030    );
    3131
    32 /** Derive a polynomial fit by least-squares --- can be done analytically */
     32/** Derive a polynomial fit by chi^2 minimisation --- can be done analytically */
    3333psFloatArray *
    34 psGetArrayPolynomial(const psFloatArray *restrict ord, //!< Ordinates (or NULL to just use the indices)
    35                      const psFloatArray *restrict coord //!< Coordinates
     34psGetArrayPolynomial(const psFloatArray *restrict x, //!< Ordinates (or NULL to just use the indices)
     35                     const psFloatArray *restrict y, //!< Coordinates
     36                     const psFloatArray *restrict yErr //!< Errors in coordinates, or NULL
    3637    );
    3738
Note: See TracChangeset for help on using the changeset viewer.