| Control System Toolbox™ | ![]() |
h = iopzplot(sys)
iopzplot(sys1,sys2,...)
iopzplot(AX,...)
iopzplot(..., plotoptions)
h = iopzplot(sys) computes and plots the poles and zeros of each input/output pair of the LTI model SYS. The poles are plotted as x's and the zeros are plotted as o's. It also returns the plot handle h. You can use this handle to customize the plot with the getoptions and setoptions commands. Type
help pzoptions
for a list of available plot options.
iopzplot(sys1,sys2,...) shows the poles and zeros of multiple LTI models SYS1,SYS2,... on a single plot. You can specify distinctive colors for each model, as in
iopzplot(sys1,'r',sys2,'y',sys3,'g')
iopzplot(AX,...) plots into the axes with handle AX.
iopzplot(..., plotoptions) plots the poles and zeros with the options specified in plotoptions. Type
help pzoptions
for more detail.
The function sgrid or zgrid can be used to plot lines of constant damping ratio and natural frequency in the s or z plane.
For arrays sys of LTI models, iopzplot plots the poles and zeros of each model in the array on the same diagram.
You can change the properties of your plot, for example the units. For information on the ways to change properties of your plots, see Ways to Customize Plots.
Use the plot handle to change the I/O grouping of a pole/zero map.
sys = rss(3,2,2); h = iopzplot(sys); % View all input-output pairs on a single axis. setoptions(h,'IOGrouping','all')
getoptions, iopzmap, setoptions
![]() | iopzmap | isct, isdt | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |