牛顿下山法python_python中使用牛顿迭代法,python牛顿代法,''' root = n

python中使用牛顿迭代法,python牛顿代法,''' root = n''' root = newtonRaphson(f,df,a,b,tol=1.0e-9). Finds a root of f(x) = 0 by combining the Newton-Raphson method with bisection. The root must be bracketed in (a,b). Calls user-supplied functions f(x) and its derivative df(x). ''' def newtonRaphson(f,df,a,b,tol=1.0e-9): import error fa = f(a) if fa == 0.0: return a fb = f(b) if fb == 0.0: return b if fa*fb > 0.0: error.err('Root is not bracketed') x = 0.5*(a + b) for i in range(30): fx = f(x) if abs(fx) < tol: return x # Tighten the brackets on the root if fa*fx < 0.0: b = x else: a = x # Try a Newton-Raphson step dfx = df(x) # If division by zero, push x out of bounds try: dx = -fx/dfx except ZeroDivisionError: dx = b - a x = x + dx # If the result is outside the brackets, use bisection if (b - x)*(x - a) < 0.0: dx = 0.5*(b - a) x = a + dx # Check for convergence if abs(dx) < tol*max(abs(b),1.0): return x print 'Too many iterations in Newton-Raphson'

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值