- galois.FieldArray.__repr__() str
Displays the array specifying the class and finite field order.
Notes¶
This function prepends
GF(
and appends, order=p^m)
.Examples¶
In [1]: GF = galois.GF(3**2) In [2]: x = GF([4, 2, 7, 5]) In [3]: x Out[3]: GF([4, 2, 7, 5], order=3^2)
In [4]: GF = galois.GF(3**2, repr="poly") In [5]: x = GF([4, 2, 7, 5]) In [6]: x Out[6]: GF([ α + 1, 2, 2α + 1, α + 2], order=3^2)
In [7]: GF = galois.GF(3**2, repr="power") In [8]: x = GF([4, 2, 7, 5]) In [9]: x Out[9]: GF([α^2, α^4, α^3, α^7], order=3^2)