预期学习目标(ILO):
您应该
了解傅里叶分析在时域中周期性信号的基础,即如何将周期性时域信号分解为基频。
能够从头编程周期波形,并将其与“scipy”版本进行比较。
使用离散傅里叶变换获得第一次经验。
了解Python库的基本用法
# Let's do the ususal necessary and nice-to-have imports
%matplotlib inline
import matplotlib.pyplot as plt # plotting
import seaborn as sns; sns.set() # styling (uncomment if you want)