Searched refs:lmmin (Results 1 – 16 of 16) sorted by relevance
/external/lmfit/ |
D | CHANGELOG | 12 - 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 …]
|
D | Android.bp | 22 "lib/lmmin.c",
|
D | configure.ac | 32 AC_CONFIG_SRCDIR([lib/lmmin.c], [demo/curve1.c])
|
/external/lmfit/man/ |
D | lmfit.pod | 20 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>
|
D | Makefile.am | 1 man_MANS = lmfit.7 lmmin.3 lmcurve.3 2 noinst_DATA = lmfit.html lmmin.html lmcurve.html
|
D | lmmin.pod | 11 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,
|
D | lmcurve.pod | 41 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>
|
D | Makefile.in | 276 man_MANS = lmfit.7 lmmin.3 lmcurve.3 277 noinst_DATA = lmfit.html lmmin.html lmcurve.html
|
/external/lmfit/lib/ |
D | Makefile.am | 1 include_HEADERS = lmstruct.h lmmin.h lmcurve.h lmcurve_tyd.h 3 liblmfit_la_SOURCES = $(include_HEADERS) lmmin.c lmcurve.c lmcurve_tyd.c
|
D | lmmin.h | 32 void lmmin(const int n_par, double* par, const int m_dat, const void* data,
|
D | lmcurve.c | 48 lmmin(n_par, par, m_dat, (const void*)&data, lmcurve_evaluate, in lmcurve()
|
D | lmcurve_tyd.c | 43 lmmin(n_par, par, m_dat, (const void*)&data, lmcurve_tyd_evaluate, in lmcurve_tyd()
|
D | Makefile.in | 137 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@
|
D | lmmin.c | 122 void lmmin(const int n, double* x, const int m, const void* data, in lmmin() function
|
/external/lmfit/demo/ |
D | nonlin1.c | 50 lmmin( n, p, n, NULL, evaluate_nonlin1, &control, &status ); in main()
|
D | surface1.c | 69 lmmin( n_par, par, m_dat, (const void*) &data, in main()
|