fun <T : Any> hstack(vararg tup: KtNDArray<T>): KtNDArray<T>
(source)
Stack arrays in sequence horizontally (column wise).
tup
- the arrays must have the same shape along all but the second axis, except 1-D arrays which can be any length.
Return
The array formed by stacking the given arrays.