hconcat (Control Design and Simulation Module, MathScript Function)
Member of the connect class.
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. |
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);