fixed_point_iteration
使用定点迭代计算单变量函数的不动点。
句法
c = fixed_point_iteration(f,x0) c = fixed_point_iteration(f,x0,TOL) c = fixed_point_iteration(f,x0,[],imax) c = fixed_point_iteration(f,x0,TOL,imax) c = fixed_point_iteration(__,'all')
描述
c = fixed_point_iteration(f,x0)返回函数的固定点 由函数句柄f指定,其中x0是固定点的初始猜测。 默认容差和最大迭代次数分别为TOL = 1e-12和imax = 1e6 。
c = fixed_point_iteration(f,x0,TOL)返回函数的固定点 由功能句柄f指
2022-07-18 20:39:03
232KB
matlab
1