贵州大学-MATLAB数字信号处理课程设计
plot(M);
title('高通滤波器滤波后信号'); ylabel('幅度/db'); xlabel('频率单位(HZ)'); axis([50,400,-2,2])
%%%%%%%%%%%%%%%%%%%%%%%%%滤除后信号的频谱 z=fft(M,2048); subplot(5,1,5);
plot((0:1023)*2500/1024,abs(z(1:1024)));grid on title('滤除后信号的频谱分析'); ylabel('幅度');
xlabel('时间(t)')axis([0,800,0,1000])