Searched refs:schurOfA (Results 1 – 7 of 7) sorted by relevance
22 ComplexSchur<MatrixType> schurOfA(A); in schur() local23 VERIFY_IS_EQUAL(schurOfA.info(), Success); in schur()24 ComplexMatrixType U = schurOfA.matrixU(); in schur()25 ComplexMatrixType T = schurOfA.matrixT(); in schur()
45 RealSchur<MatrixType> schurOfA(A); in schur() local46 VERIFY_IS_EQUAL(schurOfA.info(), Success); in schur()47 MatrixType U = schurOfA.matrixU(); in schur()48 MatrixType T = schurOfA.matrixT(); in schur()
3 ComplexSchur<MatrixXcf> schurOfA(A);4 cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;
3 ComplexSchur<MatrixXcf> schurOfA(A, false); // false means do not compute U4 cout << "The triangular matrix T is:" << endl << schurOfA.matrixT() << endl;
265 const RealSchur<MatrixType> schurOfA(arg); 266 const MatrixType& T = schurOfA.matrixT();267 const MatrixType& U = schurOfA.matrixU();290 const ComplexSchur<MatrixType> schurOfA(arg); 291 const MatrixType& T = schurOfA.matrixT();292 const MatrixType& U = schurOfA.matrixU();
493 const ComplexSchur<MatrixType> schurOfA(m_A); in initialize()498 m_T = schurOfA.matrixT(); in initialize()499 m_U = schurOfA.matrixU(); in initialize()
431 const ComplexSchur<MatrixType> schurOfA(A); 432 MatrixType T = schurOfA.matrixT();433 MatrixType U = schurOfA.matrixU();