[numerator, denominator] = padecoef(T, N)
[numerator, denominator] = padecoef(T)
| Parameter | Description |
|---|---|
| T | Time delay: a scalar real positive. |
| N | Order of approximation: a scalar real positive (default N = 1). |
| Parameter | Description |
|---|---|
| numerator | polynomials of order N: rows vector. |
| denominator | 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)
| Version | Description |
|---|---|
| 1.0.0 | initial version |