LabVIEW Control Design and Simulation Module

vconcat (MathScript RT Module Function)

  • Updated2023-03-14
  • 1 minute(s) read

vconcat (MathScript RT Module Function)

Owning Class: connect

Requires: Control Design and Simulation Module and MathScript RT Module

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.

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),[1 0;0 0;0 1],eye(3),0);
SysVCon = vconcat(SysIn_1, SysIn_2)

Related Topics

hconcat
append