Home
last modified time | relevance | path

Searched refs:lmmin (Results 1 – 16 of 16) sorted by relevance

/external/lmfit/
DCHANGELOG12 - a few more 'const' qualifiers in lmmin and lmcurve.
26 - correct typo in lmmin(3)
64 - example surface1 improved and included in man page lmmin(3)
70 - binary library renamed: lmmin -> lmfit
72 - lmcurve.h no longer depends on lmmin.h, but only on new lmstruct.h
73 - low-level API lmdif is removed (code integrated in lmmin)
77 - in consequence thereof, new parameter lists for lmcurve and lmmin
89 - man page split and largely rewritten: lmcurve(3), lmmin(3)
108 - moved "int" declarations to top of lm_printout_std() and lmmin()
117 - man page lmfit(3) is copied by dmake to lmmin(3) and lmcurve_fit(3)
[all …]
DAndroid.bp22 "lib/lmmin.c",
Dconfigure.ac32 AC_CONFIG_SRCDIR([lib/lmmin.c], [demo/curve1.c])
/external/lmfit/man/
Dlmfit.pod20 For generic minimization of the Eucledian norm of parametric vector, see B<lmmin>(3).
22 For an example how to use B<lmmin>, see the source files I<lmcurve.h> and I<lmcurve.c>. Do not patc…
40 <a href="http://apps.jcns.fz-juelich.de/man/lmmin.html"><b>lmmin</b>(3)</a>
DMakefile.am1 man_MANS = lmfit.7 lmmin.3 lmcurve.3
2 noinst_DATA = lmfit.html lmmin.html lmcurve.html
Dlmmin.pod11 lmmin - Levenberg-Marquardt least-squares minimization
16 B<#include <lmmin.h>>
18 B<void lmmin( const int> I<n_par>B<, double *>I<par>B<, const int> I<m_dat>B<,
36 B<lmmin()> determines a vector I<par> that minimizes the sum of squared elements of a vector I<fvec…
72 If I<evaluate> return with *I<userbreak> set to a negative value, B<lmmin()> will interrupt the fit…
195 #include "lmmin.h"
245 lmmin( n_par, par, m_dat, (const void*) &data, evaluate_surface,
Dlmcurve.pod41 B<lmcurve()> and B<lmcurve_tyd()> wrap the more generic minimization function B<lmmin()>, for use i…
95 Parameters are explained in B<lmmin(3)>.
100 For details, see B<lmmin(3)>.
166 <a href="http://apps.jcns.fz-juelich.de/man/lmmin.html"><b>lmmin</b>(3)</a>
DMakefile.in276 man_MANS = lmfit.7 lmmin.3 lmcurve.3
277 noinst_DATA = lmfit.html lmmin.html lmcurve.html
/external/lmfit/lib/
DMakefile.am1 include_HEADERS = lmstruct.h lmmin.h lmcurve.h lmcurve_tyd.h
3 liblmfit_la_SOURCES = $(include_HEADERS) lmmin.c lmcurve.c lmcurve_tyd.c
Dlmmin.h32 void lmmin(const int n_par, double* par, const int m_dat, const void* data,
Dlmcurve.c48 lmmin(n_par, par, m_dat, (const void*)&data, lmcurve_evaluate, in lmcurve()
Dlmcurve_tyd.c43 lmmin(n_par, par, m_dat, (const void*)&data, lmcurve_tyd_evaluate, in lmcurve_tyd()
DMakefile.in137 am_liblmfit_la_OBJECTS = $(am__objects_1) lmmin.lo lmcurve.lo \
328 include_HEADERS = lmstruct.h lmmin.h lmcurve.h lmcurve_tyd.h
330 liblmfit_la_SOURCES = $(include_HEADERS) lmmin.c lmcurve.c lmcurve_tyd.c
412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lmmin.Plo@am__quote@
Dlmmin.c122 void lmmin(const int n, double* x, const int m, const void* data, in lmmin() function
/external/lmfit/demo/
Dnonlin1.c50 lmmin( n, p, n, NULL, evaluate_nonlin1, &control, &status ); in main()
Dsurface1.c69 lmmin( n_par, par, m_dat, (const void*) &data, in main()