滤波器设计根据设计指标使用matlab定制滤波器

Posted fpga和matlab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滤波器设计根据设计指标使用matlab定制滤波器相关的知识,希望对你有一定的参考价值。

滤波器设计指标如下:

clc;
clear;
close all;
warning off;

%use the windows function
N  = 25;   %阶数,可以用过渡带来计算
wc = 1/6;  %wc是过渡带中心,要除以pi
hn = fir1(N-1,wc,'low',Bartlett(N));
%要求a
disp('the cofficient of windows is');
hn'
figure;
plot(hn,'b-o');
title('the cofficient of windows');

%要求b
figure;
freqz(hn,1);

 得到滤波器系数如下:

the cofficient of windows is

ans =

   -0.0000

   -0.0160

   -0.0305

   -0.0391

   -0.0381

   -0.0251

    0.0000

    0.0352

    0.0761

    0.1172

    0.1523

    0.1758

    0.1841

    0.1758

    0.1523

    0.1172

    0.0761

    0.0352

    0.0000

   -0.0251

   -0.0381

   -0.0391

   -0.0305

   -0.0160

   -0.0000

 

 A28-11

以上是关于滤波器设计根据设计指标使用matlab定制滤波器的主要内容,如果未能解决你的问题,请参考以下文章

IIR数字滤波器的设计

基于matlab数字滤波器的性能分析

实验六 基于MATLAB的IIR数字滤波器设计

实验六 基于MATLAB的IIR数字滤波器设计

matlab的音乐信号的分析与处理设计的实验咋做?

联系matlab用双线性变换法设计Butterworth低通滤波器m