LabVIEW Control Design and Simulation Module

is_siso (MathScript RT Module Function)

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

is_siso (MathScript RT Module Function)

Owning Class: info

Requires: Control Design and Simulation Module and MathScript RT Module

Syntax

siso = is_siso(SysIn)

Legacy Name: issiso

Description

Determines whether a system model is single-input single-output (SISO).

Examples

Inputs

Name Description
SysIn Specifies a linear time-invariant (LTI) model in transfer function, zero-pole-gain, or state-space form.

Outputs

Name Description
siso Returns 1 if the SysIn model is SISO. This function returns 0 if the SysIn model is not SISO. siso is a Boolean.

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

D = [1]
SysIn = ss([], [], [], D)
siso = is_siso(SysIn)