operator []= method
Set the element of the matrix at the index i
.
Implementation
void operator []=(int i, double v) {
_m4storage[i] = v;
}
Set the element of the matrix at the index i
.
void operator []=(int i, double v) {
_m4storage[i] = v;
}