entry method

double entry (int row, int col)

Value at row, col.

Implementation

double entry(int row, int col) {
  assert((row >= 0) && (row < dimension));
  assert((col >= 0) && (col < dimension));

  return _m2storage[index(row, col)];
}