reshape

abstract override fun reshape(dim1: Int): MutableMultiArray<T, D1>

Returns an ndarray with a new (dim1) shape without changing data.


abstract override fun reshape(dim1: Int, dim2: Int): MutableMultiArray<T, D2>

Returns an ndarray with a new (dim1, dim2) shape without changing data.


abstract override fun reshape(    dim1: Int,     dim2: Int,     dim3: Int): MutableMultiArray<T, D3>

Returns an ndarray with a new (dim1, dim2, dim3) shape without changing data.


abstract override fun reshape(    dim1: Int,     dim2: Int,     dim3: Int,     dim4: Int): MutableMultiArray<T, D4>

Returns an ndarray with a new (dim1, dim2, dim3, dim4) shape without changing data.


abstract override fun reshape(    dim1: Int,     dim2: Int,     dim3: Int,     dim4: Int,     vararg dims: Int): MutableMultiArray<T, DN>

Returns an ndarray with a new (dim1, dim2, dim3, dim4, dims) shape without changing data.