matlab 实现低通巴特沃斯滤波器切比雪夫1型/2型滤波器 和 椭圆滤波器

Posted 胡刚2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab 实现低通巴特沃斯滤波器切比雪夫1型/2型滤波器 和 椭圆滤波器相关的知识,希望对你有一定的参考价值。

下面的函数为四种低通滤波器的实现

function [b, a]=analogfile(Wp, Ws, alphamax, alphamin, Wmax, ind)
    if ind==1,
        [N,Wn]=buttord(Wp, Ws, alphamax, alphamin, 's');
        [b,a]=butter(N, Wn, 's');
    elseif ind==2,
        [N, Wn]=cheb1ord(Wp, Ws, alphamax, alphamin, 's');
        [b, a]=cheby1(N, alphamax, Wn, 's');
    elseif ind==3,
        [N, Wn]=cheb2ord(Wp, Ws, alphamax, alphamin, 's');
        [b, a]=cheby2(N, alphamin, Wn, 's');
    else
        [N, Wn]=ellipord(Wp, Ws, alphamax, alphamin, 's');
        [b, a]=ellip(N, alphamax, alphamin, Wn, 's');
    end
    
    W=0:0.001:Wmax;
    H=freqs(b, a, W);
    Hm=abs(H);
    Ha=unwrap(angle(H));
    
    N=length(W);
    alpha1=alphamax * ones(1, N);
    alpha2 = alphamin * ones(1, N);
    
    subplot(221);
    plot(W, Hm);
    grid;
    axis([0  Wmax  0  1.1*max(Hm)]);
    
    subplot(222);
    plot(W, Ha);
    grid;
    axis([0  Wmax   1.1*min(Ha)  1.1*max(Ha)]);
    
    subplot(223);
    splane(b, a);
    
    figure(1);
    subplot(224);
    plot(W, -20*log10(abs(H)));
    hold on;
    plot(W, alpha1, 'r', W, alpha2, 'r');
    grid;
    axis([0 max(W) -0.1 100]);
    hold off;
end

其中使用到了:
unwrap 函数,推荐阅读:matlab之unwrap函数
freqs 函数,推荐阅读: matlab freqz-m,Matlab函数freqs和freqz

函数调用

clear all; clf
alphamax=0.1;
alphamin=60;
Wp=10;
Ws=15;
Wmax=25;
ind=4;%指定滤波器的种类
[b, a]=analogfile(Wp, Ws, alphamax, alphamin, Wmax, ind);



以上是关于matlab 实现低通巴特沃斯滤波器切比雪夫1型/2型滤波器 和 椭圆滤波器的主要内容,如果未能解决你的问题,请参考以下文章

几种滤波器的比较(巴特沃斯切比雪夫贝塞尔滤波器)

DSP教程第43章 IIR滤波器的Matlab设计

DSP教程第43章 IIR滤波器的Matlab设计

设计一个巴特沃斯低通滤波器

用MATLAB设计对信号进行频谱分析和滤波处理的程序

语音去噪基于matlab GUI切比雪夫+椭圆形低通滤波器语音去噪含Matlab源码 2198期