-
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
.- Parameters¶
- x: ElementLike | ArrayLike¶
A finite field scalar or array.
- dtype: DTypeLike | None =
None
¶ The
numpy.dtype
of the array elements. The default isNone
which represents the smallest unsigned data type for thisFieldArray
subclass (the first element indtypes
).- copy: bool =
True
¶ The
copy
keyword argument fromnumpy.array()
. The default isTrue
.- order: 'K' | 'A' | 'C' | 'F' =
'K'
¶ The
order
keyword argument fromnumpy.array()
. The default is"K"
.- ndmin: int =
0
¶ The
ndmin
keyword argument fromnumpy.array()
. The default is 0.