⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 firhfilt.m

📁 使用Matlab实现了FIR与IIR滤波器
💻 M
字号:
function [ output_args ] = Untitled1( input_args )%UNTITLED1 Summary of this function goes here%  Detailed explanation goes here[y,ft,bits]=wavread('hello.wav');subplot(2,2,1);plot(y);xlabel('Time Index t');ylabel('Amplitude');title('原始时域图象');grid;subplot(2,2,2);plot(abs(fft(y)));xlabel('Frequence Index w');ylabel('Amplitude');title('原始频域图象');grid;fcutsh=[4800 5000];magsh = [0 1];devsh = [10^(-100/20),(1-10^(-1/20))];[Nh,Wnh,betah,ftypeh] = kaiserord(fcutsh,magsh,devsh,ft);kwh = kaiser(Nh+1,betah);bh = fir1(Nh,Wnh,'high',kwh);vh=fftfilt(bh,y);subplot(2,2,3);plot(vh);xlabel('Time Index t');ylabel('Amplitude');title('FIR高通滤波时域图象');grid;subplot(2,2,4);plot(abs(fft(vh)));xlabel('Frequence Index w');ylabel('Amplitude');title('高通滤波后频域图象');grid;sound(vh,ft,bits);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -