| * Library: lmfit (Levenberg-Marquardt least squares fitting) |
| * Contents: Declares lmcurve, a simplified API for curve fitting |
| * using the generic Levenberg-Marquardt routine lmmin. |
| * Copyright: Joachim Wuttke, Forschungszentrum Juelich GmbH (2004-2013) |
| * License: see ../COPYING (FreeBSD) |
| * Homepage: apps.jcns.fz-juelich.de/lmfit |
| * Note to programmers: Don't patch and fork, but copy and variate! |
| * If you need to compute residues differently, then please do not patch |
| * lmcurve.h, but copy it to a differently named file, and change lmcurve() |
| * into a differently named function declaration, like we have done in |
| #define __BEGIN_DECLS extern "C" { |
| #define __BEGIN_DECLS /* empty */ |
| #define __END_DECLS /* empty */ |
| const int n_par, double* par, const int m_dat, |
| const double* t, const double* y, |
| double (*f)(double t, const double* par), |
| const lm_control_struct* control, lm_status_struct* status); |