nichols
Function File: nichols (sys)
Function File: nichols (sys1, sys2, …, sysN)
Function File: nichols (sys1, sys2, …, sysN, w)
Function File: nichols (sys1, ’style1’, …, sysN, ’styleN’)
Function File: [mag, pha, w] = nichols (sys)
Function File: [mag, pha, w] = nichols (sys, w)
Nichols chart of frequency response, plots gain over phase. If no output arguments are given, the response is printed on the screen together with a grid of contours of constant close-loop magnitude and phase.
Inputs
{wmin, wmax} specifies a frequency range,
where wmin and wmax denote minimum and maximum frequencies
in rad/s.help plot for details.Outputs
See also: bode, nyquist, sigma
Source Code: nichols
s = tf('s');
G = 1/(2*s^2+3*s+4);
nichols(G);