I want to filter the x signal given using the following filters using the filter command.

조회 수: 2 (최근 30일)
Hello, i have the following filters given to me:
FIR Filter:
y[n] = 0.4x[n]+0.3x[n1]+0.2x[n2]+0.1x[n3]
IIR Filter:
y[n] = 0.5y[n 1] 0.1y[n 2] + 0.3x[n] 0.2x[n 1] + 0.1x[n 2]
I want to filter the following signal using these two filters with filter command
x[n] = cos(0.1πn) + cos(0.5πn) + cos(0.9πn)
Can you help me on this problem, i could not understand the filter command. Thanks in advance

답변 (1개)

Srijith Kasaragod
Srijith Kasaragod 2021년 12월 2일
편집: Srijith Kasaragod 2021년 12월 2일
Hi Deniz,
Inorder to call "filter" function, you need to pass the denominator and numerator coefficents for the rational transfer function. To obtain the transfer function from the filter difference equation, you can apply Z-transform. For the FIR filter, the coefficients can be computed as:
Z-Transfrom gives,
rearranging,
From the transfer function, numerator and denominator coefficients are assigned to variables "b" and "a" respectively, and passed to "filter" function along with input signal.
n=-5:0.1:5;
x= cos(0.1*pi*n)+cos(0.5*pi*n)+cos(0.9*pi*n);
b=[0.4 0.3 0.2 0.1];
a=1;
y=filter(b,a,x);
plot(n,x);
hold on;
plot(n,y);
legend('signal','filteroutput');
hold off;
Similarly, you can filter "x" using IIR filter.
Hope this helps!

카테고리

Help CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by