hconcat (MathScript RT Module Function)
- Updated2023-03-14
- 1 minute(s) read
hconcat (MathScript RT Module Function)
Owning Class: connect
Requires: Control Design and Simulation Module and MathScript RT Module
Syntax
SysHCon = hconcat(SysIn_1, SysIn_2, ..., SysIn_n)
Description
Concatenates two or more system models such that the SysHCon model contains these models as columns.
Inputs
| Name | Description |
|---|---|
| SysIn_n | Specifies a linear time-invariant (LTI) model in transfer function, zero-pole-gain, or state-space form. You must specify at least two models. All models must have the same number of outputs. |
Outputs
| Name | Description |
|---|---|
| SysHCon | Returns the concatenated system 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
SysIn_1 = ss(eye(2),eye(2),eye(2),0);
SysIn_2 = ss(eye(3),eye(3),[1 0 0;0 0 1],0);
SysHCon = hconcat(SysIn_1, SysIn_2);