cat

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

Concatenates this ndarray with other.


open override fun cat(other: MultiArray<T, D>, axis: Int): NDArray<T, D>

Concatenates this ndarray with other along the specified axis.


open override fun cat(other: List<MultiArray<T, D>>, axis: Int): NDArray<T, D>

Concatenates this ndarray with a list of other ndarrays.