You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
/*
|
|
* Library: lmfit (Levenberg-Marquardt least squares fitting)
|
|
*
|
|
* File: lmcurve.h
|
|
*
|
|
* 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
|
|
* lmcurve_tyd.h.
|
|
*/
|
|
|
|
#ifndef LMCURVE_H
|
|
#define LMCURVE_H
|
|
#undef __BEGIN_DECLS
|
|
#undef __END_DECLS
|
|
#ifdef __cplusplus
|
|
#define __BEGIN_DECLS extern "C" {
|
|
#define __END_DECLS }
|
|
#else
|
|
#define __BEGIN_DECLS /* empty */
|
|
#define __END_DECLS /* empty */
|
|
#endif
|
|
|
|
#include <lmstruct.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
void lmcurve(
|
|
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);
|
|
|
|
__END_DECLS
|
|
#endif /* LMCURVE_H */
|