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, false); // false means do not compute U4 cout << "The triangular matrix T is:" << endl << schurOfA.matrixT() << endl;
3 ComplexSchur<MatrixXcf> schurOfA(A);4 cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;
353 const RealSchur<MatrixType> schurOfA(m_A); in compute()354 const MatrixType& T = schurOfA.matrixT(); in compute()355 const MatrixType& U = schurOfA.matrixU(); in compute()386 const ComplexSchur<MatrixType> schurOfA(m_A); in compute()387 const MatrixType& T = schurOfA.matrixT(); in compute()388 const MatrixType& U = schurOfA.matrixU(); in compute()
380 const ComplexSchur<MatrixType> schurOfA(m_A); in modfAndInit()381 m_T = schurOfA.matrixT(); in modfAndInit()382 m_U = schurOfA.matrixU(); in modfAndInit()
219 const ComplexSchur<MatrixType> schurOfA(m_A); in computeSchurDecomposition()220 m_T = schurOfA.matrixT(); in computeSchurDecomposition()221 m_U = schurOfA.matrixU(); in computeSchurDecomposition()