1

这是 python 中的代码,它计算f (x) =∑ ((-1)*x)/(x*x+n*n)
n 从 1 到无穷大......正确到 0.0001,范围为 1 < x < 100,步长为 0.1。
但是我遇到了一个语法错误,因为我是 python 编程的新手......

    from scipy import *
    from matplotlib.pyplot import *
    x=arange(0.1,100,0.1)
    f=zeros(len(x))
    s=-1
    for n in range (1,10000):
        t=s*x/(x*x+n*n)
        f +=t
        s =-s
        if max(abs(t))< 1e-4
            break
    for xx in c_[x,f]:
        print "%f    %f" % (xx[0],xx[1])
4

1 回答 1

7

你需要在:之后添加if max(abs(t))< 1e-4

于 2012-09-29T21:33:30.100 回答