matlab中用牛顿法求方程的根

问题描述:

matlab中用牛顿法求方程的根
用matlab求解以下问题:
用牛顿法求解方程x=e^-x在x0=0.5附近的根(ε=10^-5)

代码如下:function rtn=newton1(fx,dfx,x0,tol,N)% Newton Method% The first parameter fx is a external function with respect to viable x.% The second parameter dfx is the first order diffential function ...