Control System Toolbox Previous page   Next Page
pzplot

Compute the pole-zero map of an LTI model and return the plot handle

Syntax

Description

h = pzplot(sys) computes the poles and (transmission) zeros of the LTI model sys and plots them in the complex plane. 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

for a list of available plot options.

pzplot(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

pzplot(AX,...) plots into the axes with handle AX.

pzplot(..., plotoptions) plots the poles and zeros with the options specified in plotoptions. Type

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, pzmap plots the poles and zeros of each model in the array on the same diagram.

Example

Use the plot handle to change the color of the plot's title.

See Also
getoptions  Get plot options

pzmap       Compute the pole-zero map of an LTI model

setoptions  Set plot options


Previous page  pzmap reg Next page

© 1994-2005 The MathWorks, Inc.