Nyquist Plot of exponential function
Show older comments
Answers (1)
Arthi Sathyamurthi
on 28 Jul 2021
You can use the nyquist or nyquistplot function in MATLAB to create a Nyquist plot of the frequency response.
You can use the following code to understand how to create Nyquist plot for your zero-pole-gain model
s = zpk('s');
G = pi * (exp(-0.25*s))/s;
nyquistplot(G);
grid on;
Categories
Find more on Uncertainty Analysis 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!