delay_to_z (MathScript RT Module Function)
- Updated2023-03-14
- 1 minute(s) read
delay_to_z (MathScript RT Module Function)
Owning Class: convert
Requires: Control Design and Simulation Module and MathScript RT Module
Syntax
SysDel = delay_to_z(SysDis)
Legacy Name: delay2z
Description
Incorporates delays into discrete system models by adding poles at the origin. You must specify the delay using the set function.
Inputs
| Name | Description |
|---|---|
| SysDis | Specifies a discrete linear time-invariant (LTI) model in transfer function, zero-pole-gain, or state-space form. |
Outputs
| Name | Description |
|---|---|
| SysDel | Returns a discrete LTI model with the total delay converted into poles at the origin. SysOutDis is in the same form as the SysDis 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
SysDis = ss(-1, 1, 2, 0, 0.1)
SysDis = set(SysDis, 'inputdelay', 4)
SysDel = delay_to_z(SysDis)