用python實現正弦信號sin((pi/2)*t)、sin(pi*t)、 sin((3pi/2)*t)

正弦信號的表示。編寫代碼實現正弦信號sin((pi/2)t)、sin(pit)、 sin((3pi/2)*t) 方法一(多線表示) 源代碼:python import numpy as np import matplotlib.pyplot as plt t = np.linspace(0, 2, 200) y1 = np.sin((np.pi * 2) * t) y2 = np.sin((np
相關文章
相關標籤/搜索