drtf (Control Design and Simulation Module, MathScript Function)
Member of the construct class.
Syntax
SysOutTF = drtf(i, j, k, Ts)
Description
Generates a discrete random system model in transfer function form.
Inputs
Name | Description |
i | Specifies the order of the model. The default value is 2. |
j | Specifies the number of model outputs. The default value is 1. |
k | Specifies the number of model inputs. The default value is 1. |
Ts | Specifies the sampling time of the model, in seconds. The default value is 1. |
Outputs
Name | Description |
SysOutTF | Returns a randomly generated discrete i-th-order system model in transfer function form. This model has j outputs, k inputs, and a sampling time of Ts. |
Examples
i = 1;j = 2;
SysOutTF = drtf(i, j);