Next: , Previous: Nonlinear Least-Squares Iteration, Up: Nonlinear Least-Squares Fitting   [Index]


39.8 Testing for Convergence

A minimization procedure should stop when one of the following conditions is true:

The handling of these conditions is under user control. The functions below allow the user to test the current estimate of the best-fit parameters in several standard ways.

Function: int gsl_multifit_nlinear_test (const double xtol, const double gtol, const double ftol, int * info, const gsl_multifit_nlinear_workspace * w)
Function: int gsl_multilarge_nlinear_test (const double xtol, const double gtol, const double ftol, int * info, const gsl_multilarge_nlinear_workspace * w)

These functions test for convergence of the minimization method using the following criteria:

If none of the tests succeed, info is set to 0 and the function returns GSL_CONTINUE, indicating further iterations are required.


Next: , Previous: Nonlinear Least-Squares Iteration, Up: Nonlinear Least-Squares Fitting   [Index]