reshape
Returns an ndarray with a new (dim1) shape without changing data.
abstract override fun reshape(dim1: Int, dim2: Int): MutableMultiArray<T, D2>
Content copied to clipboard
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>
Content copied to clipboard
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>
Content copied to clipboard
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>
Content copied to clipboard
Returns an ndarray with a new (dim1, dim2, dim3, dim4, dims) shape without changing data.