Docs
Stack and Concat

Stacking and Concatenation Operations

Stacking and concatenation operations take multiple arrays as input, perform stacking or concatenation operations along specified axes, and return a new array.

Note: Stacking and concatenation operations are still work in progress and not fully usable yet.

concat

def concat(args: List[Array], axis: Int) -> Array
Concatenates the input arrays along the given axis.
Args

args: The arrays to concatenate. axis: The axis along which to concatenate.

Returns

The concatenated array.