get method

Complex get(
  1. int i,
  2. int j
)

Implementation

Complex get(int i, int j) {
  return entries[i][j];
}