<< minreal | Control System functions | obsv >> |
nyquist(sys) |
nyquist(sys, w) |
[re, im, wout] = nyquist(sys) |
[re, im, wout] = nyquist(sys, w) |
Dynamic system
Frequencies: vector or {wmin,wmax}
Real part of system response
Imaginary part of system response
Frequencies
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.
f = figure();
sys = tf([1, 1, 3, 3], [1, -3, 3, -1])
nyquist(sys);
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);
bode.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET