<< step | Control System functions | tf2ss >> |
sys = tf() |
sys = tf('s') |
sys = tf(numerator, denominator) |
sys = tf(numerator, denominator, Ts) |
polynomial coefficients: a row vector or as a cell array of row vectors.
polynomial coefficients: a row vector or as a cell array of row vectors.
Sampling time Ts, default: in seconds
LTI model.
Output tranfer function system model.
sys = tf(numerator, denominator) is used to create a continuous-time transfer function model.
It is defined by specifying numerator and denominator of the transfer function.
When you include the Ts parameter, it allows you to create a discrete-time transfer function.
Setting Ts to -1 indicates an unspecified sampling time, and, in this scenario, the input arguments are treated as if they pertain to a continuous-time system.
numerator = 10;
denominator = [20, 33, 44];
sys = tf(numerator, denominator)
numerator = 10;
denominator = [20, 33, 44];
Ts = 1.5;
sys = tf(numerator, denominator, Ts)
ss.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET