plotting the magnitude and phase response of a 3rd order low pass filter defined by the equation y(n)

11 次查看(过去 30 天)
Using MATLAB implement a code to plot the magnitude and phase response of a 3rd order low pass filter defined by the equation:
y(n) = 0.0181x(n)+0.0543x(n-1)+0.0543x(n-2)+0.0181x(n-3)+1.76y(n-1)-1.1829y(n-2)+0.2781y(n-3)

采纳的回答

Chunru
Chunru 2021-8-25
% y(n) = 0.0181x(n)+0.0543x(n-1)+0.0543x(n-2)+0.0181x(n-3)+1.76y(n-1)-1.1829y(n-2)+0.2781y(n-3)
b = [0.0181 0.0543 0.0543 0.0181];
a = [1 -1.76 1.1829 -0.2781];
freqz(b, a, 1024);
  3 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by