rlocus (Control Design and Simulation Module, MathScript Function)

LabView Control Design MathScript Functions

rlocus (Control Design and Simulation Module, MathScript Function)

Member of the dynchar class.

Syntax

rlocus(SysInSISO)

[roots, gains] = rlocus(SysInSISO)

Description

Creates an Evans, or root-locus, plot of closed-loop poles of a single-input single-output (SISO) system model as the feedback gain increases from zero to infinity.

Examples

Inputs

Name Description
SysInSISO Specifies a linear time-invariant (LTI) SISO model in transfer function, zero-pole-gain, or state-space form.

Outputs

Name Description
roots Returns the locations of the closed-loop roots of the SysIn model. roots is a complex matrix.
gains Returns the gain values this function uses to create the root locus plot. gains is a real vector.

Examples

num = [1]den = [1, 5, 6]
SysInSISO = tf(num, den)
rlocus(SysInSISO)

Related Topics

issiso
pole
rlocfind