<< minreal Control System functions obsv >>

nyquist


Nyquist plot of frequency response.


Syntax


nyquist(sys)
nyquist(sys, w)
[re, im, wout] = nyquist(sys)
[re, im, wout] = nyquist(sys, w)

Input argument


sys

Dynamic system

w

Frequencies: vector or {wmin,wmax}

Output argument


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);

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);

See also


bode.

History


Version Description
1.0.0 initial version

Author


Allan CORNET

<< minreal Control System functions obsv >>