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

4 次查看(过去 30 天)
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 = x0;
fc = f(x0);
fprintf('initial guess: c=%d, fc=%d\n',c,fc)
if abs(fc) <= delta
return;
end;
while abs(fc) > delta,
fpc = fprime(c);
if fpc==0,
error('fprime is 0')
end;
c = c - fc/fpc;
fc = f(c);
fprintf(' c=%d, fc=%d\n',c,fc)
end;
function fx = f(x)
fx = sinx;
return;
function fprimex = fprime(x)
fprimex = cosx;
return

回答(1 个)

Mischa Kim
Mischa Kim 2021-1-10
编辑:Mischa Kim 2021-1-10
Add a loop index, e.g. ii. Also, you set your code as a function. This means you can call it, e.g., from the command window using
c = newton(1, 1e-3)
and thus it does not make sense to define x0 and delta in the function.
function c = newton(x0, delta)
format long e
% x0 = 5;
% delta = 10^-8;
c = x0;
fc = f(x0);
fprintf('Initial guess: c = %d, fc = %d\n',c,fc)
if abs(fc) <= delta
return;
end
ii = 0;
while abs(fc) > delta
ii = ii + 1;
fpc = fprime(c);
if (fpc==0)
error('fprime is 0')
end
c = c - fc/fpc;
fc = f(c);
fprintf('ii = %d: c = %10.7e, fc = %10.7e\n',ii,c,fc)
end
end
function fx = f(x)
fx = sin(x);
end
function fprimex = fprime(x)
fprimex = cos(x);
end
  2 个评论
Malcolm Kevin
Malcolm Kevin 2021-1-10
yes you're right. The question does not give tolerence "delta" value, but has the initial guess x0. My question is how to print out exact 5 iterations. I was just stuck in here not knowing how to set up this loop with certain variable like Maxiteration < 6 ?
Mischa Kim
Mischa Kim 2021-1-10
编辑:Mischa Kim 2021-1-10
Well, with Newton's method you do not know the number of iteration steps. It typically depends on the tolerance, the delta you set. The smaller the delta the more iteration steps it will take to find the solution. Of course, provided that the initial guess is close enough to the solution and that the algorithm converges.
If you just want to do a certain number of iterations and then quit the algorithm you can add a condition like
while (abs(fc) > delta) && (ii < 6)

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by