nyquist
Nyquist plot of frequency response.
📝Syntax
nyquist(sys)
nyquist(sys, w)
[re, im, wout] = nyquist(sys)
[re, im, wout] = nyquist(sys, w)
📥Input Arguments
Parameter Description
sys Dynamic system
w Frequencies: vector or {wmin,wmax}
📤Output Arguments
Parameter Description
re Real part of system response
im Imaginary part of system response
wout Frequencies
📄Description

The Nyquist function, nyquist(sys), generates a graphical representation known as a Nyquist plot, illustrating the frequency response of a dynamic system model represented by sys.

This plot visualizes both the real and imaginary components of the system's response across varying frequencies.

The contour depicted by nyquist encompasses both positive and negative frequencies.

Additionally, the plot incorporates arrows that signify the direction of increasing frequency for each branch.

💡Examples
f = figure();
sys = tf([1, 1, 3, 3], [1, -3, 3, -1])
nyquist(sys);
Example illustration
H = tf([2 5 1], [1 2 3]);
[re, im, wout] = nyquist(H);
f = figure();
      H = tf([2 5 1], [1 2 3]);
nyquist(H);
Example illustration
🔗See Also
bode
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub