上传者: 38570459
|
上传时间: 2021-10-17 20:46:18
|
文件大小: 285KB
|
文件类型: -
secant_method
使用割线法计算单变量函数的根。
句法
root = secant_method(f,x0) root = secant_method(f,x0,TOL) root = secant_method(f,x0,[],imax) root = secant_method(f,x0,TOL,imax) root = secant_method(__,'all')
描述
root = secant_method(f,x0)返回函数的根 由函数句柄f指定,其中x0是根的初始猜测。 默认容差和最大迭代次数分别为TOL = 1e-12和imax = 1e6 。
root = secant_method(f,x0,TOL)返回函数的根 由函数句柄f指定,其中x0是根的初始猜测, TOL是容差。 默认的最大迭代次数为imax = 1e6 。
root