matlab 新手,我无法理解我得到的一些代码:
x = 1; % initial guess = 1
Tol = 5e-9; % correct to 8 decimal places
count = 0;
f=0.54030231; % f(1)= 0.54030231
fprintf('step x f(x)\n')
fprintf('---- ----------- ----------\n')
fprintf('%1i %12.8f %12.8f\n',count,x,f)
while abs(f)>Tol %loop until the absolute value of f is smaller than tolerance
count = count + 1
deriv = -sin(x); ; % first derivative of f(x)
x2 = x - (f/deriv); % new value of x
x = x2;
f = cos (x); % new value of f(x)
fprintf('%3i %12.8f %12.8f\n',count,x,f)
end
该程序是牛顿方法,用于查找我理解的方程的根。
我不明白的是这部分:
fprintf('---- ----------- ----------\n')
fprintf('%1i %12.8f %12.8f\n',count,x,f)
问题:
- 为什么第二行的最后一位除以n?
- 第二行中的数字是多少,即 %1i、%12.8f 等?
- 这如何与后面写的“count, x, f”一起工作?
谢谢