Plotting magnitude of frequency response of the system

11 views (last 30 days)
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.

Answers (1)

Ameer Hamza
Ameer Hamza on 30 Oct 2020
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

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!