public reshape(shape as IList<Int>) as NDArray<T>:
Reshapes the NDArray to the specified shape.
A new reshaped NDArray. a = NDArray<Int>.fromList([1, 2, 3, 4]) b = a.reshape([2, 2])
a = NDArray<Int>.fromList([1, 2, 3, 4]) b = a.reshape([2, 2])