Home
last modified time | relevance | path

Searched refs:lmcurve (Results 1 – 12 of 12) sorted by relevance

/external/lmfit/man/
Dlmfit.pod18 For fitting a data set {(x_i,y_i)|i=0,1,..} by a parametric curve f(x,t), see B<lmcurve>(3).
22lmcurve.h> and I<lmcurve.c>. Do not patch these files; copy and modify them to create your own, di…
39 <a href="http://apps.jcns.fz-juelich.de/man/lmcurve.html"><b>lmcurve</b>(3)</a>,
Dlmcurve.pod11 lmcurve - Levenberg-Marquardt least-squares fit of a curve (t,y)
16 B<#include <lmcurve.h>>
18 B<void lmcurve( const int> I<n_par>B<, double *>I<par>B<, const int> I<m_dat>B<,
41 B<lmcurve()> and B<lmcurve_tyd()> wrap the more generic minimization function B<lmmin()>, for use i…
43lmcurve()> determines a vector I<par> that minimizes the sum of squared elements of a residue vect…
108 #include "lmcurve.h"
134 lmcurve( n, par, m, t, y, f, &control, &status );
DMakefile.am1 man_MANS = lmfit.7 lmmin.3 lmcurve.3
2 noinst_DATA = lmfit.html lmmin.html lmcurve.html
Dlmmin.pod39 For applications in curve fitting, the wrapper function B<lmcurve(3)> offers a simplified API.
289 <a href="http://apps.jcns.fz-juelich.de/man/lmcurve.html"><b>lmcurve</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
Dlmcurve.h38 void lmcurve(
Dlmcurve.c40 void lmcurve( in lmcurve() function
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
410 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lmcurve.Plo@am__quote@
/external/lmfit/
DCHANGELOG12 - a few more 'const' qualifiers in lmmin and lmcurve.
16 - use temporary variable for readability in lmcurve (suggested by T. Klauser)
72 - lmcurve.h no longer depends on lmmin.h, but only on new lmstruct.h
74 - lmcurve_fit -> lmcurve
77 - in consequence thereof, new parameter lists for lmcurve and lmmin
89 - man page split and largely rewritten: lmcurve(3), lmmin(3)
DAndroid.bp20 "lib/lmcurve.c",
/external/lmfit/demo/
Dcurve1.c46 lmcurve( n, par, m, t, y, f, &control, &status ); in main()