transpose (MathScript RT Module Function)
- Updated2023-03-14
- 1 minute(s) read
transpose (MathScript RT Module Function)
Owning Class: cdops
Requires: Control Design and Simulation Module and MathScript RT Module
Syntax
SysTrans = transpose(SysIn)
Description
Transposes a multiple-input multiple-output (MIMO) system model. The input-output pairs of the original system model become the output-input pairs of the transposed system model.
Inputs
| Name | Description |
|---|---|
| SysIn | Specifies a linear time-invariant (LTI) system model in transfer function, zero-pole-gain, or state-space form. |
Outputs
| Name | Description |
|---|---|
| SysTrans | Returns the transpose of the SysIn model. |
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
z_11 = 1;
z_12 = [];
z_21 = [2];
z_22 = [];
p_11 = 2;
p_12 = 2;
p_21 = [1 3];
p_22 = [1, 1];
K = [2 0; 1 2];
SysIn = zpk(z_11, z_12, z_21, z_22, p_11, p_12, p_21, p_22, K);
SysTrans = transpose(SysIn);