65 for(
UInt32 unColTempA = 0; unColTempA < DIM; unColTempA++) {
66 for(
UInt32 unRow = 1; unRow < DIM; unRow++) {
68 for (
UInt32 unCol = 0; unCol < DIM; unCol++) {
69 if (unCol == unColTempA)
86 for(
UInt32 unCofactorCol = 0; unCofactorCol < DIM; unCofactorCol++) {
87 for(
UInt32 unCofactorRow = 0; unCofactorRow < DIM; unCofactorRow++) {
90 for(
UInt32 unRow = 0; unRow < DIM; unRow++) {
91 if(unRow != unCofactorRow) {
93 for(
UInt32 unCol = 0; unCol < DIM; unCol++) {
94 if(unCol != unCofactorCol) {
103 cCofactorMatrix(unCofactorRow, unCofactorCol) =
104 std::pow(-1.0, unCofactorRow + unCofactorCol + 2u) * cTempMatrix.
GetDeterminant();
107 return cCofactorMatrix;