- property galois.Poly.degrees : ndarray
An array of the polynomial degrees in descending order.
Notes¶
The entries of
coeffs
are paired withdegrees
.Examples¶
In [1]: GF = galois.GF(7) In [2]: p = galois.Poly([3, 0, 5, 2], field=GF); p Out[2]: Poly(3x^3 + 5x + 2, GF(7)) In [3]: p.degrees Out[3]: array([3, 2, 1, 0])