HomeSort by relevance Sort by last modified time
    Searched refs:ComplexSchur (Results 1 - 10 of 10) sorted by null

  /external/eigen/doc/snippets/
ComplexSchur_matrixT.cpp 3 ComplexSchur<MatrixXcf> schurOfA(A, false); // false means do not compute U
ComplexSchur_matrixU.cpp 3 ComplexSchur<MatrixXcf> schurOfA(A);
ComplexSchur_compute.cpp 2 ComplexSchur<MatrixXcf> schur(4);
  /external/eigen/test/
schur_complex.cpp 16 typedef typename ComplexSchur<MatrixType>::ComplexScalar ComplexScalar;
17 typedef typename ComplexSchur<MatrixType>::ComplexMatrixType ComplexMatrixType;
22 ComplexSchur<MatrixType> schurOfA(A);
35 ComplexSchur<MatrixType> csUninitialized;
42 ComplexSchur<MatrixType> cs1;
44 ComplexSchur<MatrixType> cs2(A);
51 ComplexSchur<MatrixType> csOnlyT(A, false);
60 ComplexSchur<MatrixType> csNaN(A);
73 CALL_SUBTEST_5(ComplexSchur<MatrixXf>(10));
nomalloc.cpp 134 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA);
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 26 * \class ComplexSchur
42 * ComplexSchur(const MatrixType&, bool) constructor which computes
51 template<typename _MatrixType> class ComplexSchur
94 ComplexSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
111 ComplexSchur(const MatrixType& matrix, bool computeU = true)
126 * ComplexSchur(const MatrixType& matrix, bool computeU) or the
137 eigen_assert(m_isInitialized && "ComplexSchur is not initialized.");
138 eigen_assert(m_matUisUptodate && "The matrix U has not been computed during the ComplexSchur decomposition.");
147 * ComplexSchur(const MatrixType& matrix, bool computeU) or the
161 eigen_assert(m_isInitialized && "ComplexSchur is not initialized.")
    [all...]
ComplexSchur_MKL.h 44 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >& \
45 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW>& matrix, bool computeU) \
ComplexEigenSolver.h 15 #include "./ComplexSchur.h"
201 * ComplexSchur class. The Schur decomposition is then used to
226 ComplexSchur<MatrixType> m_schur;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 293 const ComplexSchur<MatrixType> schurOfA(m_A);
403 const ComplexSchur<MatrixType> schurOfA(m_A);
MatrixFunction.h 219 const ComplexSchur<MatrixType> schurOfA(m_A);

Completed in 525 milliseconds