Matrix.row constructor

Matrix.row(
  1. List<double> row
)

Implementation

Matrix.row(List<double> row) {
  n = 1;
  m = row.length;
  _base = [row.sublist(0)];
}