galois.typing.ShapeLike

A Union representing objects that can be coerced into a NumPy shape 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([ 77,  53, 141,  70], 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([[184, 197, 240],
        [ 98, 228,  66]], order=3^5)
    
    In [5]: x.shape
    Out[5]: (2, 3)
    
    In [6]: x = GF.Random([2, 3, 4]); x
    Out[6]: 
    GF([[[ 30, 169,  23, 236],
         [ 12, 203, 152, 117],
         [ 38, 126, 139,  17]],
    
        [[ 75, 117,  27, 236],
         [ 62, 124, 182, 153],
         [ 42,  22, 180, 196]]], order=3^5)
    
    In [7]: x.shape
    Out[7]: (2, 3, 4)
    
    In [8]: x = GF.Random(()); x
    Out[8]: GF(123, order=3^5)
    
    In [9]: x.shape
    Out[9]: ()
    

Alias

alias of Union[int, Sequence[int]]


Last update: Sep 02, 2022