get method

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

Get the element at row, col

Implementation

double get(int row, int col) {
  _checkIndices(row, col);
  return _get(row, col);
}