iopzmap (Control Design and Simulation Module, MathScript Function)
From LabView Control Design MathScript Functions
iopzmap (Control Design and Simulation Module, MathScript Function)
Member of the dynchar class.
Syntax
iopzmap(SysIn)
iopzmap(SysIn, attributes)
Description
Creates a plot of the poles and zeros of each input-output pair of a system model.
Inputs
| Name | Description | ||||||||||||||||||||||||||||||||
| SysIn | Specifies a linear time-invariant (LTI) model in transfer function, zero-pole-gain, or state-space form. | ||||||||||||||||||||||||||||||||
| attributes | Specifies valid plot attributes. Order the plot attributes by color, point-style, and line-style. For example, 'bo-' specifies that the plot is blue, marks points with circles, and uses solid lines. attributes is a string that can take a combination of the following values:
|
Examples
z1 = [1]
z2 = [2]
p1 = [-1, -2]
p2 = [-3, -4]
K = [1 2]
SysIn = zpk(z1, z2, p1, p2, K)
iopzmap(SysIn, 'y.')