vconcat (Control Design and Simulation Module, MathScript Function)

LabView Control Design MathScript Functions

vconcat (Control Design and Simulation Module, MathScript Function)

Member of the connect class.

Syntax

SysVCon = (SysIn_1, SysIn_2, ..., SysIn_n)

Description

Concatenates two or more system models such that the SysVCon model contains these models as rows.

Examples

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 inputs.

Outputs

Name Description
SysVCon Returns the concatenated system model.

Examples

SysIn_1= ss(eye(2),eye(2),eye(2),0);SysIn_2 = ss(eye(3),[1 0;0 0;0 1],eye(3),0);
SysVCon = vconcat(SysIn_1, SysIn_2)

Related Topics

hconcat
append