resize method
Reshape the matrix. If the size becomes smaller,
remove the redundant data; if the size becomes larger, use number
to supplement it.
Implementation
T resize({required int row, required int column, double number = 0.0}) =>
_fromList(self.resize(row: row, column: column));