ss_to_ss (MathScript RT Module Function)
- Updated2023-03-14
- 1 minute(s) read
ss_to_ss (MathScript RT Module Function)
Owning Class: convert
Requires: Control Design and Simulation Module and MathScript RT Module
Syntax
SysSimSS = ss_to_ss(SysInSS, T)
Legacy Name: ss2ss
Description
Applies a transformation using a transformation matrix you specify.
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. |
Details
The following table lists the support characteristics of this function.
| Supported in the LabVIEW Run-Time Engine | Yes |
| Supported on RT targets | Yes |
| Suitable for bounded execution times on RT | Not characterized |
Examples
SysInSS = ss([1, 1; -1, 2], [1, 2]', [2, 1], 0)
T = ones(2, 2) - eye(2)
SysSimSS = ss_to_ss(SysInSS, T)