getAt method

double getAt(
  1. int row,
  2. int col
)

Get the value of a matrix at a specific index

Implementation

double getAt(int row, int col) {
  return (_matrix[row][col]).toDouble();
}