Plotting magnitude of frequency response of the system

6 ビュー (過去 30 日間)
Muhammad Ali
Muhammad Ali 2020 年 10 月 30 日
コメント済み: Muhammad Ali 2020 年 10 月 30 日
I want to plot magnitude resonse of this system
I have written the following code for this:
num = [0 2 1];
den = [1 3 2];
[h,w] = freqz(num,den);
plot(w,abs(h))
grid ON;
I got this plot:
how can I verify that this is right plot. Can anyone verify that please.

回答 (1 件)

Ameer Hamza
Ameer Hamza 2020 年 10 月 30 日
freqz only works for a discrete-time system. Your system is a continuous time. You will need to use freqresp as you did in your other question here: https://www.mathworks.com/matlabcentral/answers/630383-pole-zero-plot-and-frequancy-response-of-a-system-in-matlab

カテゴリ

Help Center および File ExchangeMatched Filter and Ambiguity Function についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by