Python:绘制积分函数

时间:2018-07-03 12:10:11

标签: python

我看到这里有一些类似的问题,但是似乎没有一个真正解决我的问题。 这是我的代码:

import numpy as np
from matplotlib import pyplot as mp
from scipy.integrate import * 

deltat = 30.0e-6
ku = 50.0e-12
pant = 0.05
csc = 200.0e-12
tausc = 150.0e-6

def int1(tp, tausc, csc, t):
    return (1/csc)*(np.exp(-tp/tausc))

def deltafisc(t):
    return quad(int1, 0, np.inf, args=(tausc, csc, t))

t = np.linspace(-2.0, 2.0, num=100)*1e-4

mp.plot(t,deltafisc(t))
mp.show()

该功能有效,但是当我尝试绘制它时报告错误。

0 个答案:

没有答案