klyn.math.NDArray.reshape
method
public reshape(shape as IList<Int>) as NDArray<T>:
Description
Reshapes the NDArray to the specified shape.
a = NDArray<Int>.fromList([1, 2, 3, 4])
b = a.reshape([2, 2])
Parameters
  • shape Shape dimensions.
Returns
A new reshaped NDArray. ``` a = NDArray<Int>.fromList([1, 2, 3, 4]) b = a.reshape([2, 2]) ```