FindMinimum
Usage
• FindMinimum[f, {x, }] searches for a local minimum in f, starting from the point x= . • FindMinimum[f, {{x, }, {y, }, ... }] searches for a local minimum in a function of several variables.
Notes
• FindMinimum returns a list of the form { , {x-> }}, where  is the minimum value of f found, and  is the value of x for which it is found. • If the starting point for a variable is given as a list, the values of the variable are taken to be lists with the same dimensions. • FindMinimum has attribute HoldAll. • FindMinimum[f, {x, , }] searches for a local minimum in f using  and  as the first two values of x, avoiding the use of derivatives. • FindMinimum[f, {x, , , }] searches for a local minimum, stopping the search if x ever gets outside the range  to  . • The results found by FindMinimum may correspond only to local, but not global, minima. • The following options can be given: • The settings for AccuracyGoal and PrecisionGoal specify the number of digits to seek in both the value of the position of the minimum, and the value of the function at the minimum. • Possible settings for Method include "ConjugateGradient", "Gradient", "LevenbergMarquardt", "Newton" and "QuasiNewton", with the default being Automatic. • New in Version 1; modified in 5. • Advanced Documentation.
|