reshape method

List reshape(
  1. int row,
  2. int column
)

Reshaping means changing the shape of an array.

Implementation

List reshape(int row, int column) => Matrix2d().reshape(this, row, column);