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_matrixU.cpp3 ComplexSchur<MatrixXcf> schurOfA(A);
4 cout << "The unitary matrix U is:" << endl << schurOfA.matrixU() << endl;
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;
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixSquareRoot.h265 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();
DMatrixPower.h493 const ComplexSchur<MatrixType> schurOfA(m_A); in initialize()
498 m_T = schurOfA.matrixT(); in initialize()
499 m_U = schurOfA.matrixU(); in initialize()
DMatrixFunction.h431 const ComplexSchur<MatrixType> schurOfA(A);
432 MatrixType T = schurOfA.matrixT();
433 MatrixType U = schurOfA.matrixU();