繁体   English   中英

ImportError:没有名为错误的模块

[英]ImportError: No module named error

在《 Python工程中的数值方法》第二版,作者:Jaan Kiusalaas中,我编写了第146页上的相同模块,该模块使用二等分方法来计算根f(x)= 0:

from math import log,ceil
import error

def bisection2(f,x1,x2,switch=0,tol=1.0e-9):
        f1 = f(x1)
        if f1 == 0.0: return x1
        f2 = f(x2)
        if f2 == 0.0: return x2
        if f1*f2 > 0.0: error.err('Root is not bracketed')
        n = ceil(log(abs(x2 - x1)/epsilon)/log(2.0))
        for i in range(n):
            x3 = 0.5*(x1 + x2); f3 = f(x3)
            if (switch == 1) and (abs(f3) > abs(f1)) \
                                         (abs(f3) > abs(f2)):
                return None
            if f3 == 0.0:return x3
            if f2*f3 < 0.0:
                x1 = x3; f1 = f3
            else:
                x2 = x3; f2 = f3
        return (x1 + x2)/2.0

我遇到以下错误:

ImportError Traceback(最近一次调用最近一次)/usr/lib/python2.7/dist-packages/IPython/utils/py3compat.pyc在execfile(fname,* where)中173其他:174 filename = fname-> 175 内置 .execfile (文件名,* where)

/home/uwhpsc/Desktop/bisection2/bisection2.py in()1 from math import log,ceil ----> 2 import error 3 4 def bisection2(f,x1,x2,switch = 0,tol = 1.0e- 9):5 f1 = f(x1)

ImportError:没有名为错误的模块

请问我如何解决这个问题?

为了使此代码有效,您可以删除以下行:

import error

并说:

if f1*f2 > 0.0: error.err('Root is not bracketed')

更改为:

if f1*f2 > 0.0: quit('Root is not bracketed')

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM