entry method

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

Value at row, col.

Implementation

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

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