<< tf2ss | Control System functions | tzero >> |
[numerator, denominator] = tfdata(sys) |
[numerator, denominator, Ts] = tfdata(sys) |
sys = tf(numerator, denominator) |
sys = tf(numerator, denominator, Ts) |
a LTI model.
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
The function tfdata(sys) retrieves the matrix data numerator, denominator from the transfer function model (LTI array) represented by sys.
If sys is initially in the form of a state-space model (LTI array), it is automatically converted to the transfer function representation before extracting the matrix data.
numerator = 10;
denominator = [20, 33, 44];
sys = tf(numerator, denominator)
[num, den] = tfdata(sys)
tf.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET