| << ord2 | Control System functions | parallel >> |
| [numerator, denominator] = padecoef(T, N) |
| [numerator, denominator] = padecoef(T) |
Time delay: a scalar real positive.
Order of approximation: a scalar real positive (default N = 1).
polynomials of order N: rows vector.
polynomials of order N: rows vector.
padecoef(T, N) computes the Nth-order Padé Approximation for the continuous-time delay system represented by the exponential term exp(-T*s) and returns it in the form of a transfer function.
T = 2; N = 4;
[numerator, denominator] = padecoef(T, N)
tf.
| Version | Description |
|---|---|
| 1.0.0 | initial version |
Allan CORNET