我正在尝试从 Python 中的一篇论文中实现一个方程(黑色方形方程) -
到目前为止,我有一个简化的模型,但我无法生成预期的输出(下图);我怀疑问题出在np.exp()虽然我不确定 - 关于如何做到这一点的任何建议?
import numpy as np
import math
import matplotlib.pyplot as plt
f = 1e6
T = 1/f
Omega = 2*np.pi*f
i = np.arange(0,50e-6,100e-9)
y = np.sin(Omega*i) * (i**2) * np.exp(-i)
plt.figure(1)
plt.plot(i,y,'b-')
plt.grid()
plt.show()