Plot the amplitude and phase response for the given FIR system.
21 ビュー (過去 30 日間)
古いコメントを表示
1-2z^-1+4z^-2
Plot the amplitude and phase response for the given FIR system.
1 件のコメント
Walter Roberson
2023 年 2 月 9 日
How does this differ from https://www.mathworks.com/matlabcentral/answers/1909670-plot-fir-system-magnitude-and-phase?s_tid=srchtitle ?
回答 (2 件)
Sarvesh Kale
2023 年 2 月 10 日
To plot the frequency response of FIR system use the following code
b=[1 -2 4]; % define numerator coefficient
a=[1]; % define denominator coefficient
figure ;
freqz(b,a,2048) % plot frequency response for 2048 points
You can take a look at following documentation of freqz and phasez to get more information on them
I hope this answers your queries, please accept the answer if it does.
Thank you.
0 件のコメント
Sulaymon Eshkabilov
2023 年 2 月 10 日
Use tf() and bode():
z = tf('z',0.1);
H = (4*(z^-2)-2*(z^-1)+1) /1
bode(H)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!