photo

Malcolm Kevin


Last seen: más de 3 años hace Con actividad desde 2021

Followers: 0   Following: 0

Estadística

Feeds

Ver por

Pregunta


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

más de 3 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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 =...

más de 3 años hace | 1 respuesta | 0

1

respuesta