computeC method
Compute the denominator part of the SPOOK equation: C = G*inv(M)*G' + eps
Implementation
double computeC() {
return computeGiMGt() + eps;
}
Compute the denominator part of the SPOOK equation: C = G*inv(M)*G' + eps
double computeC() {
return computeGiMGt() + eps;
}