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

📄 chebylfilt.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,1,1);plot(y);xlabel('Time Index t');ylabel('Amplitude');title('原始时域图象');Wp =2*1000/ft;Ws = 2*1200/ft;Rp = 1;Rs = 100;[N,Wn] = cheb1ord(Wp,Ws,Rp,Rs);[b,a] = cheby1(N,Rp,Wn,'low');v=filter(b,a,y);subplot(2,1,2);plot(v);xlabel('Time Index t');ylabel('Amplitude');title('CHEBY低通滤波时域图象');sound(v,ft,bits);

⌨️ 快捷键说明

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