trace method

double trace ()

Trace of the matrix.

Implementation

double trace() {
  double t = 0.0;
  t += _m2storage[0];
  t += _m2storage[3];
  return t;
}