computeC method

double computeC()

Compute the denominator part of the SPOOK equation: C = G*inv(M)*G' + eps

Implementation

double computeC() {
  return computeGiMGt() + eps;
}