Create a linear system that approximates a delay.
Return the numerator and denominator coefficients of the Pade approximation of the given order.
Time. delay
Degree of denominator of approximation.
If numdeg is None, numerator degree equals denominator degree. If numdeg >= 0, specifies degree of numerator. If numdeg < 0, numerator degree is n+numdeg.
Polynomial coefficients of the delay model, in descending powers of s.
Notes
References
[1]Algorithm 11.3.1 in Golub and van Loan, “Matrix Computation” 3rd. Ed. pp. 572-574.
[2]M. Vajta, “Some remarks on Padé-approximations”, 3rd TEMPUS-INTCOM Symposium.
Examples
>>> delay = 1 >>> num, den = ct.pade(delay, 3) >>> num, den ([-1.0, 12.0, -60.0, 120.0], [1.0, 12.0, 60.0, 120.0])
>>> num, den = ct.pade(delay, 3, -2) >>> num, den ([-6.0, 24.0], [1.0, 6.0, 18.0, 24.0])
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4