function nf=newton(xo,Niter,tol) disp("") disp ("Output for the Newton method") disp("") disp (" n x err f(x)") for i=1:Niter x=xo-f(xo)/df(xo); if (f(xo)==0 |abs(x-xo)