计算python中的定积分

时间:2014-08-31 04:42:24

标签: python integration integral

我正在尝试编写一个循环来计算每一步的定积分值。函数bigF非常复杂。换句话说,它集成了一系列与sfrom s=tn-(n/2)s=tn+(n/2)相关的术语。集成后,bigF仍有变量t。所以你可以说bigF(t) = integral(f(s,t)),其中f(s,t)integrate.integ之后的一大堆术语。在最后一行中,我想在bigF(t)计算t=tn

的积分后bigF评估f(s,t)

运行后,我收到错误global name 's' is not defined。但s只是集成中的虚拟变量,因为我正在计算卷积。我需要做什么?

import numpy as np  
import scipy.integrate as integ 
import math 

nt=5001#; %since (50-0)/.01 = 5000
dt = .01#; % =H
H=.01

theta_n = np.ones(nt)
theta_n[1]=0#; %theta_o
omega_n = np.ones(nt)
omega_n[1]=-0.4# %omega_o
epsilon=10^(-6)
eta = epsilon*10
t_o=0

def bigF(t, n):
    return integrate.integ((422.11/eta)*math.exp((5*(4*((eta*t-s-tn)^2)/eta^2)-1)^(-1))*omega, s,tn-(n/2),tn+(n/2))

for n in range(1,4999)
    tn=t_o+n*dt;
    theta_n[n+1] = theta_n[n] + H*bigF(tn, n);

1 个答案:

答案 0 :(得分:0)

如果你正在进行卷积,听起来像是你想要numpy.convolve