ss2ss (Control Design and Simulation Module, MathScript Function)

LabView Control Design MathScript Functions

ss2ss (Control Design and Simulation Module, MathScript Function)

Member of the convert class.

Syntax

SysSimSS = ss2ss(SysInSS, T)

Description

Applies a transformation using a transformation matrix you specify.

Examples

Inputs

Name Description
SysInSS Specifies a linear time-invariant (LTI) system model in state-space form.
T Specifies the transformation matrix this function uses to transform the SysInSS model. T must be an n x n real matrix, where n is the number of model states.

Outputs

Name Description
SysSimSS Returns the LTI state-space model resulting from the transformation.

Examples

SysInSS = ss([1, 1; -1, 2], [1, 2]', [2, 1], 0)T = ones(2, 2) - eye(2)
SysSimSS = ss2ss(SysInSS, T)

Related Topics

balreal
canon