relativeError method

double relativeError(
  1. Matrix4 correct
)

Returns relative error between this and correct

Implementation

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