compare_hanning_hamming.m
来自「MATLAB数字信号处理的入门学习例程及实验结果」· M 代码 · 共 6 行
M
6 行
n=60;
x=hanning(n);y=hamming(n);
subplot(2,2,1);stem(x);title('hanning window');
subplot(2,2,2);stem(fft(x));title('hanning fft');
subplot(2,2,3);stem(y);title('hamming window');
subplot(2,2,4);stem(fft(y));title('hamming fft');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?