LabVIEW Control Design and Simulation Module

is_delayed (MathScript RT Module Function)

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

is_delayed (MathScript RT Module Function)

Owning Class: info

Requires: Control Design and Simulation Module and MathScript RT Module

Syntax

delayed = is_delayed(SysIn)

Legacy Name: hasdelay

Description

Determines whether a system model has delay present.

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
delayed Returns 1 if the SysIn model has delay present. This function returns 0 if the SysIn model does not have delay present. delayed 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

SysIn = ss(-1, 1, 2, 0, 0.1)
SysIn = set(SysIn, 'inputdelay', 4)
delayed = is_delayed(SysIn)

Related Topics

delay_to_z
totaldelay
get
set