我想在 Scipy 中绘制具有时间延迟的一阶传递函数。为了绘制一阶传递函数,我这样做:
from scipy import signal
import matplotlib.pyplot as plt
Kp = 3.0
taup = 2.0
num = [Kp]
den = [taup,1]
sys1 = signal.TransferFunction(num,den)
t1,y1 = signal.step(sys1)
plt.plot(t1,y1,'b--',linewidth=3,label='Transfer Fcn')
plt.show()
为了在 Matlb 中绘制具有时间延迟的一阶传递函数,我这样做:
num = 3.0;
den = [2.0 1];
P = tf(num,den,'InputDelay',10)
P0 = tf(num,den);
step(P0,'b',P,'r')
但是如何在 Scipy 中绘制具有时间 dalay 的一阶传递函数?