Matrix.fromRows constructor

Matrix.fromRows(
  1. List<Vector> rows
)

Implementation

Matrix.fromRows(List<Vector> rows)
    : _rows = rows.map((Vector e) => e.copy()).toList();