operator []= method

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

Set the element of the matrix at the index i.

Implementation

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