我的代码有效,但我需要再添加 2 件事:
- 输出 - 包含估计序列的向量,包括初始猜测 x0,
输入-最大迭代
function [ R, E ] = myNewton( f,df,x0,tol ) i = 1; while abs(f(x0)) >= tol R(i) = x0; E(i) = abs(f(x0)); i = i+1; x0 = x0 - f(x0)/df(x0); end if abs(f(x0)) < tol R(i) = x0; E(i) = abs(f(x0)); end end