Home
last modified time | relevance | path

Searched refs:schurOfA (Results 1 – 7 of 7) sorted by relevance

/external/eigen/test/
Dschur_complex.cpp22 ComplexSchur<MatrixType> schurOfA(A); in schur() local
23 VERIFY_IS_EQUAL(schurOfA.info(), Success); in schur()
24 ComplexMatrixType U = schurOfA.matrixU(); in schur()
25 ComplexMatrixType T = schurOfA.matrixT(); in schur()
Dschur_real.cpp45 RealSchur<MatrixType> schurOfA(A); in schur() local
46 VERIFY_IS_EQUAL(schurOfA.info(), Success); in schur()
47 MatrixType U = schurOfA.matrixU(); in schur()
48 MatrixType T = schurOfA.matrixT(); in schur()
/external/eigen/doc/snippets/
DComplexSchur_matrixT.cpp3 ComplexSchur<MatrixXcf> schurOfA(A, false); // false means do not compute U
4 cout << "The triangular matrix T is:" << endl << schurOfA.matrixT() << endl;
DComplexSchur_matrixU.cpp3 ComplexSchur<MatrixXcf> schurOfA(A);
4 cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixSquareRoot.h353 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()
DMatrixPower.h380 const ComplexSchur<MatrixType> schurOfA(m_A); in modfAndInit()
381 m_T = schurOfA.matrixT(); in modfAndInit()
382 m_U = schurOfA.matrixU(); in modfAndInit()
DMatrixFunction.h219 const ComplexSchur<MatrixType> schurOfA(m_A); in computeSchurDecomposition()
220 m_T = schurOfA.matrixT(); in computeSchurDecomposition()
221 m_U = schurOfA.matrixU(); in computeSchurDecomposition()