xcat#

t3toolbox.backend.common.xcat(x, y)#
def xcat(
        x: typ.Union[NDArray, typ.Sequence],  # array (concat on axis 0) or sequence (concat as tuples); same kind as y
        y: typ.Union[NDArray, typ.Sequence],  # same kind as x
) -> typ.Union[NDArray, typ.Tuple]:           # x and y concatenated

Concatenate arrays or sequences.

Parameters:
Return type:

Union[NDArray, Tuple]