MATLAB语句: [b,a]=butter(n,wn,’ftype’)

设计一个阶数为n,截止频率为wn的数字低通滤波器。若参数ftype取‘high’或‘stop’,则用来设计相应的高通或带阻滤波器。返回值a和b为系统函数的分子和分母的系数。

例 : 设计一个阶数为9阶、截止频率为300Hz的高通Butterworth滤波器,采样频率为1000。并画出它的频率特性。

程序:       n=9;

             wn=300/500;

             [b,a]=butter(n,wn,’high’);

             freqz(b,a,128,1000);

Butterworth数字滤波器设计

作者:TianSL 

相关文章:

  • 2021-05-10
  • 2021-05-24
  • 2021-08-27
  • 2021-08-16
  • 2022-01-02
  • 2022-02-07
  • 2021-06-19
猜你喜欢
  • 2021-05-02
  • 2021-07-08
  • 2021-07-31
  • 2021-08-22
  • 2021-05-18
  • 2021-11-18
相关资源
相似解决方案