operator []= method

void operator []= (int i, double v)

Set the element of the matrix at the index i.

Implementation

void operator []=(int i, double v) {
  _m2storage[i] = v;
}