cat

abstract infix fun cat(other: MultiArray<T, D>): NDArray<T, D>

Concatenates this ndarray with other.


abstract fun cat(other: MultiArray<T, D>, axis: Int = 0): NDArray<T, D>

Concatenates this ndarray with other along the specified axis.


abstract fun cat(other: List<MultiArray<T, D>>, axis: Int = 0): NDArray<T, D>

Concatenates this ndarray with a list of other ndarrays.