Community Profile

photo

Malcolm Kevin


Last seen: ongeveer 3 jaar ago Active since 2021

Statistics

Content Feed

View by

Question


Newton Method Matlab code
function approximation = newtonsMethod( fnc, x0, delta ) maxnumIter = 100; n = 0; % Initialize iteration counter. syms fp;...

ongeveer 3 jaar ago | 1 answer | 0

1

answer

Question


How to write Newton method with exact number of iterations and see all digit ? for example if method is required to take exact 5 iterations of newton's method
Here is my code so far, I haven't set up the N yet function c = newton(x0, delta) format long e x0 = 5; delta = 10^-8; c =...

ongeveer 3 jaar ago | 1 answer | 0

1

answer