- property galois.Poly.nonzero_degrees : ndarray
An array of the polynomial degrees that have non-zero coefficients in descending order.
Notes¶
The entries of
nonzero_coeffs
are paired withnonzero_degrees
.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.nonzero_degrees Out[3]: array([3, 1, 0])