- galois.typing.ShapeLike
A
Union
representing objects that can be coerced into a NumPyshape
tuple.Union¶
int
: The size of a 1-D array.In [1]: GF = galois.GF(3**5) In [2]: x = GF.Random(4); x Out[2]: GF([ 94, 54, 19, 178], order=3^5) In [3]: x.shape Out[3]: (4,)
Sequence
[int
]: An iterable of integer dimensions. Tuples or lists are allowed. An empty iterable,()
or[]
, represents a 0-D array (scalar).In [4]: x = GF.Random((2, 3)); x Out[4]: GF([[233, 179, 38], [139, 127, 107]], order=3^5) In [5]: x.shape Out[5]: (2, 3) In [6]: x = GF.Random([2, 3, 4]); x Out[6]: GF([[[ 6, 176, 230, 167], [110, 241, 48, 147], [170, 149, 177, 217]], [[205, 83, 187, 132], [ 50, 183, 193, 126], [137, 206, 142, 43]]], order=3^5) In [7]: x.shape Out[7]: (2, 3, 4) In [8]: x = GF.Random(()); x Out[8]: GF(180, order=3^5) In [9]: x.shape Out[9]: ()
Alias¶