FindFit
Usage
• FindFit[data, expr, pars, vars] finds numerical values of the parameters pars that make expr give a best fit to data as a function of vars. • The data can have the form {{ , , ... , }, { , , ... , }, ... }, where the number of coordinates x, y, ... is equal to the number of variables in the list vars. • The data can also be of the form { , , ... }, with a single coordinate assumed to take values 1, 2, ... .
Notes
• FindFit returns a list of replacements for  ,  , ... . • The expression expr must yield a numerical value when pars and vars are all numerical. • The expression expr can depend either linearly or nonlinearly on the  . • In the linear case, FindFit finds a globally optimal fit. • In the nonlinear case, it finds in general only a locally optimal fit. • FindFit by default finds a least-squares fit. • The option NormFunction -> f specifies that the norm f[residual] should be minimized. • The following options can be given: • The settings for AccuracyGoal and PrecisionGoal specify the number of digits to seek in both the values of the parameters returned, and the value of the NormFunction. • New in Version 5. • Advanced Documentation.
|