-
galois.FieldArray(x: ElementLike | ArrayLike, dtype: DTypeLike | None =
None, copy: bool =True, order: 'K' | 'A' | 'C' | 'F' ='K', ndmin: int =0) Creates an array over \(\mathrm{GF}(p^m)\).
- Parameters¶
- x: ElementLike | ArrayLike¶
A finite field scalar or array.
- dtype: DTypeLike | None =
None¶ The
numpy.dtypeof the array elements. The default isNonewhich represents the smallest unsigned data type for thisFieldArraysubclass (the first element indtypes).- copy: bool =
True¶ The
copykeyword argument fromnumpy.array(). The default isTrue.- order: 'K' | 'A' | 'C' | 'F' =
'K'¶ The
orderkeyword argument fromnumpy.array(). The default is"K".- ndmin: int =
0¶ The
ndminkeyword argument fromnumpy.array(). The default is 0.