This is an iterative program, but the result is wrong. Why?

1 次查看(过去 30 天)
这是一个迭代法的程序,但结果是错误的,这是为什么呢?
  2 个评论
VBBV
VBBV 2024-3-19
编辑:VBBV 2024-3-19
Hi @希媛 the comparison of output values from the function based on some inputs is not a correct way to test the program correctness since sin & cos functions exhibit sign changes according to different values of inputs
g = @(x) cos(x);
p = 20; % initial value
xc = fpi(g,p,1e-6)
xc = 0.9179
cos(g(p))
ans = 0.9179
function xc = fpi(g,x0,tol)
x(1) = g(x0); % <<<
x(2) = g(x(1));
i = 1;
while abs(sign(i+1)-sign(x(i))) > tol
x(i+2) = g(x(i+1));
i=i+1;
end
xc = x(end);
end

请先登录,再进行评论。

回答(1 个)

Torsten
Torsten 2024-3-18
编辑:Torsten 2024-3-18
g = @(x) cos(x);
xc = fpi(g,1,1e-6)
xc = 0.7391
g(xc)
ans = 0.7391
function xc = fpi(g,x0,tol)
xold = x0;
error = 2*tol;
while error > tol
x = g(xold);
error = abs(x-xold);
xold = x;
end
xc = x;
end

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by