/* 600 */ GMatrix A_Transpose = new GMatrix(A);
/* 601 */ A_Transpose.transpose();
/* 602 */ GMatrix M = new GMatrix(order + 1, order + 1);
/* 603 */ M.mul(A_Transpose, A);
/* */ try {
/* 605 */ M.invert();
/* */ } catch (SingularMatrixException e) {
/* 607 */ System.out.println("SINGULAR MATRIX EXCEPTION in prediction");
/* 608 */ System.out.println(M);
/* */ }
/* */