Community Profile

photo

Mohamed Elsayed Abo Heiba


Active since 2019

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
MATLAB CODE NEWTON METHOD
f = @(x) exp(x)-3*x; fp = @(x) exp(x)-3; x0 = 1; N = 10; tol = 1E-10; x(1) = x0; % Set initial guess n = 2; nfinal = N...

4 years ago | 0