checkMatrix property

  1. @override
Matrix get checkMatrix
override

Checks the decomposition by reconstructing the original matrix. Returns the reconstructed matrix as Q * A * Q.transpose().

Implementation

@override
Matrix get checkMatrix => Q * T * Q.transpose();