LabVIEW Control Design and Simulation Module

iopzgraph (MathScript RT Module Function)

  • Updated2023-03-14
  • 1 minute(s) read

iopzgraph (MathScript RT Module Function)

Owning Class: dynchar

Requires: Control Design and Simulation Module and MathScript RT Module

Syntax

iopzgraph(SysIn)

iopzgraph(SysIn, attributes)

Legacy Name: iopzmap

Description

Creates a plot of the poles and zeros of each input-output pair of a system model.

Examples

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:

'b' Colors the plot blue.
'c' Colors the plot cyan.
'g' Colors the plot green.
'k' Colors the plot black.
'm' Colors the plot magenta.
'r' Colors the plot red.
'y' Colors the plot yellow.
'.' Marks points with dots.
'o' Marks points with circles.
'x' Marks points with crosses.
'+' Marks points with plus signs.
'*' Marks points with asterisks.
'-' Uses solid lines.
':' Uses dotted lines.
'-.' Uses dashed and dotted lines.
'--' Uses dashed lines.

Details

The following table lists the support characteristics of this function.

Supported in the LabVIEW Run-Time Engine Yes (if you request output)
Supported on RT targets Yes (if you request output)
Suitable for bounded execution times on RT Not characterized

Examples

z1 = [1]
z2 = [2]
p1 = [-1, -2]
p2 = [-3, -4]
K = [1 2]
SysIn = zpk(z1, z2, p1, p2, K)
iopzgraph(SysIn, 'y.')

Related Topics

ackermann
poleplace
poles
pzgraph
rlocus
zero