| Control System Toolbox | ![]() |
Plot Nichols frequency response and return the plot handle
Syntax
h =nicholsplot(sys)h = nicholsplot(sys,{wmin,wmax})h = nicholsplot(sys,w)h = nicholsplot(sys1,sys2,...,w)h = nicholsplot(AX,...)h = nicholsplot(..., plotoptions)
Description
h = nicholsplot(sys) draws the nichols plot of the LTI model sys (created with tf, zpk, ss, or frd). It also returns the plot handle h. You can use this handle to customize the plot with the getoptions and setoptions commands. Type
for a list of available plot options.
The frequency range and number of points are chosen automatically. See bode for details on the notion of frequency in discrete time.
nicholsplot(sys,{wmin,wmax}) draws the Nichols plot for frequencies between wmin and wmax (in rad/s).
nicholsplot(sys,w) uses the user-supplied vector w of frequencies, in radians/second, at which the Nichols response is to be evaluated. See logspace to generate logarithmically spaced frequency vectors.
nicholsplot(sys1,sys2,...,w) draws the Nichols plots of multiple LTI models sys1,sys2,... on a single plot. The frequency vector w is optional. You can also specify a color, line style, and marker for each system, as in
nicholsplot(AX,...) plots into the axes with handle AX.
nicholsplot(..., plotoptions) plots the Nichols plot with the options specified in plotoptions. Type
Example
Generate a Nichols plot and use the plot handle to change the frequency units to Hz.
See Also
getoptions Get plot options
nichols Compute Nichols frequency responses of LTI models
setoptions Set plot options
| nichols | norm | ![]() |
© 1994-2005 The MathWorks, Inc.