copy method

Matrix copy()

Implementation

Matrix copy() =>
    Matrix.fromRows(rows.map<Vector>((Vector v) => v.copy()).toList());