Newton Raphson Optimization Procedure
It estimates the Newton Raphson optimization procedure for (m) unknowns of (n) non-linear equations. In case no Jacobian vector is presented, then the initial Jacobian vector is estimated by Broyden Method (multivariate secant approach) and it is then updated using the Sherman Morrison formula.
Usage:
[x, results] = newtonraphson(@f, @df, startingvals, TolX, MaxIter);
f is the M-file containing the functions, while df is the M-file containing the Jacobian vector. In case the tolerance (TolX) or the maximum number of iterations are not specified then the default values are set to: 1e-8 and 500, respectively.
The g.m is an example function with two unknows and two equations, and dg.m the Jacobian vector of the example function. Finally, the same solution will be reached either by specifying the Jacobian or not. (for instance: newtonraphson(@g, @dg, [-10; -10] ,[], []) or newtonraphson(@g, [], [-10; -10] ,[], []) ) although a larger number of iterations is required.
Citation pour cette source
Alexandros Gabrielsen (2026). Newton Raphson Optimization Procedure (https://fr.mathworks.com/matlabcentral/fileexchange/28710-newton-raphson-optimization-procedure), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
- Mathematics and Optimization > Optimization Toolbox > Systems of Nonlinear Equations > Newton-Raphson Method >
Tags
Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.0.0.0 |
