Changeset 334 for trunk/archive/pslib/include/psMinimize.h
- Timestamp:
- Mar 31, 2004, 12:46:38 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMinimize.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMinimize.h
r285 r334 12 12 */ 13 13 14 /** Minimize a particular function */14 /** Minimize a particular non-linear function */ 15 15 psFloatArray * 16 16 psMinimize(float (*myFunction)(const psFloatArray *restrict), //!< Function to minimize … … 30 30 ); 31 31 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 */ 33 33 psFloatArray * 34 psGetArrayPolynomial(const psFloatArray *restrict ord, //!< Ordinates (or NULL to just use the indices) 35 const psFloatArray *restrict coord //!< Coordinates 34 psGetArrayPolynomial(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 36 37 ); 37 38
Note:
See TracChangeset
for help on using the changeset viewer.
