relativeError method

double relativeError(
  1. Matrix3 correct
)

Returns relative error between this and correct

Implementation

double relativeError(Matrix3 correct) {
  final Matrix3 diff = correct - this;
  final double correctNorm = correct.infinityNorm();
  final double diffNorm = diff.infinityNorm();
  return diffNorm / correctNorm;
}