np.concatenate

np.concatenate(arrays, axis=0)[source]

Concatenates the input arrays along the given axis.

See: https://numpy.org/doc/stable/reference/generated/numpy.concatenate.html

Examples

In [1]: GF = galois.GF(2**3)

In [2]: A = GF.Random((2,2)); A
Out[2]: 
GF([[1, 2],
    [2, 4]], order=2^3)

In [3]: B = GF.Random((2,2)); B
Out[3]: 
GF([[6, 6],
    [5, 5]], order=2^3)

In [4]: np.concatenate((A,B), axis=0)
Out[4]: 
GF([[1, 2],
    [2, 4],
    [6, 6],
    [5, 5]], order=2^3)

In [5]: np.concatenate((A,B), axis=1)
Out[5]: 
GF([[1, 2, 6, 6],
    [2, 4, 5, 5]], order=2^3)