klyn.math.NDArray.reshape
method
public reshape(shape as IList<Int>) as NDArray<T>:
Description

Reshapes the NDArray to the specified shape.

Parameters
ParameterDescription
shapeShape dimensions.
Returns

A new reshaped NDArray.

Example
a = NDArray<Int>.fromList([1, 2, 3, 4])
b = a.reshape([2, 2])