reshape

open override fun reshape(dim1: Int): D1Array<T>

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


open override fun reshape(dim1: Int, dim2: Int): D2Array<T>

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


open override fun reshape(    dim1: Int,     dim2: Int,     dim3: Int): D3Array<T>

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


open override fun reshape(    dim1: Int,     dim2: Int,     dim3: Int,     dim4: Int): D4Array<T>

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


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

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