Azzera filtri
Azzera filtri

Nyquist Plot of exponential function

8 visualizzazioni (ultimi 30 giorni)
Sandhya H
Sandhya H il 2 Mag 2021
Risposto: Arthi Sathyamurthi il 28 Lug 2021
How do I obtain the nyquist plot of transfer function ((πe^(-0.25s)/s) in Matlab? What is the code to get nyquist plot of exponential functions?
  3 Commenti
Sandhya H
Sandhya H il 7 Mag 2021
I don't know how to approach to get the nyquist plot. Can you please share the code?
Paul
Paul il 8 Mag 2021
Take a look at
doc nyquist

Accedi per commentare.

Risposte (1)

Arthi Sathyamurthi
Arthi Sathyamurthi il 28 Lug 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;

Community Treasure Hunt

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

Start Hunting!

Translated by