operator [] method

List<double> operator [](
  1. int m
)

Access a row of data from the matrix

To access a specific value use double brackets

Matrix a = Matrix.eye(2)
print( a[1][1] )

Unlike math class indexes start at zero.

Implementation

List<double> operator [](int m) => _values[m];