Newton-Raphson Method

Newton-Raphson Method to find Real Root of Functions
1.2K Downloads
Updated 13 Nov 2017

View License

The Newton-Raphson Method is a better version of the Fixed Point Interation Method, increasing the speed of the convergence to find the root of the equation. The NRM uses divisions, so it can give a indefinite math error, once the denominator is zero. The formula of the NMR is: x = x0 -(f(x0)/f'(x0)). It is my first MATLAB code. After getting the number of iterations and the root itself, the code plots a graph to show the root, highlighted. Tell me what you like, what you would do it different, and help me get better at MATLAB.

Cite As

Nelson Fernando Santos Eltz (2026). Newton-Raphson Method (https://www.mathworks.com/matlabcentral/fileexchange/65040-newton-raphson-method), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2017b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Version Published Release Notes
1.0.0.0

Forgot to change the language of all the code. Where it was "Aproximação Inicial", now is "Initial Aprox."