bundles / numpy 2.4.4 / numpy / polynomial / polynomial / polycompanion
function
numpy.polynomial.polynomial:polycompanion
Signature
def polycompanion ( c ) Summary
Return the companion matrix of c.
Extended Summary
The companion matrix for power series cannot be made symmetric by scaling the basis, so this function differs from those for the orthogonal polynomials.
Parameters
c: array_like1-D array of polynomial coefficients ordered from low to high degree.
Returns
mat: ndarrayCompanion matrix of dimensions (deg, deg).
Examples
from numpy.polynomial import polynomial as P c = (1, 2, 3)✓
P.polycompanion(c)
✗Aliases
-
numpy.polynomial.polynomial.polycompanion