cupyx.scipy.signal.tf2ss#
- cupyx.scipy.signal.tf2ss(num, den)[source]#
Transfer function to state-space representation.
- Parameters:
num (array_like) – Sequences representing the coefficients of the numerator and denominator polynomials, in order of descending degree. The denominator needs to be at least as long as the numerator.
den (array_like) – Sequences representing the coefficients of the numerator and denominator polynomials, in order of descending degree. The denominator needs to be at least as long as the numerator.
- Returns:
A, B, C, D – State space representation of the system, in controller canonical form.
- Return type:
See also