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

  /external/eigen/doc/snippets/
RealSchur_compute.cpp 2 RealSchur<MatrixXf> schur(4);
RealSchur_RealSchur_MatrixType.cpp 4 RealSchur<MatrixXd> schur(A);
  /external/eigen/test/
schur_real.cpp 45 RealSchur<MatrixType> schurOfA(A);
54 RealSchur<MatrixType> rsUninitialized;
61 RealSchur<MatrixType> rs1;
63 RealSchur<MatrixType> rs2(A);
70 RealSchur<MatrixType> rs3;
71 rs3.setMaxIterations(RealSchur<MatrixType>::m_maxIterationsPerRow * size).compute(A);
89 RealSchur<MatrixType> rsOnlyT(A, false);
98 RealSchur<MatrixType> rsNaN(A);
111 CALL_SUBTEST_5(RealSchur<MatrixXf>(10));
eigensolver_generic.cpp 48 ei2.setMaxIterations(RealSchur<MatrixType>::m_maxIterationsPerRow * rows).compute(a);
  /external/eigen/Eigen/src/Eigenvalues/
RealSchur.h 21 * \class RealSchur
40 * given matrix. Alternatively, you can use the RealSchur(const MatrixType&, bool)
45 * The documentation of RealSchur(const MatrixType&, bool) contains an example
54 template<typename _MatrixType> class RealSchur
83 explicit RealSchur(Index size = RowsAtCompileTime==Dynamic ? 1 : RowsAtCompileTime)
104 explicit RealSchur(const EigenBase<InputType>& matrix, bool computeU = true)
120 * \pre Either the constructor RealSchur(const MatrixType&, bool) or the
125 * \sa RealSchur(const MatrixType&, bool) for an example
129 eigen_assert(m_isInitialized && "RealSchur is not initialized.");
130 eigen_assert(m_matUisUptodate && "The matrix U has not been computed during the RealSchur decomposition.")
    [all...]
RealSchur_LAPACKE.h 42 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >& \
43 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
EigenSolver.h 14 #include "./RealSchur.h"
263 * The matrix is first reduced to real Schur form using the RealSchur
316 RealSchur<MatrixType> m_realSchur;
464 // inefficient! this is already computed in RealSchur
  /external/eigen/unsupported/test/
matrix_functions.h 48 RealSchur<MatrixType> schur(result);
matrix_power.cpp 108 typename internal::conditional< IsComplex, ComplexSchur<MatrixType>, RealSchur<MatrixType> >::type schur;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h 212 ComplexVector schurValues(const RealSchur<DenseMatrix>& schurofH) const;
395 inline typename DGMRES<_MatrixType, _Preconditioner>::ComplexVector DGMRES<_MatrixType, _Preconditioner>::schurValues(const RealSchur<DenseMatrix>& schurofH) const
424 typename internal::conditional<NumTraits<Scalar>::IsComplex, ComplexSchur<DenseMatrix>, RealSchur<DenseMatrix> >::type schurofH;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 265 const RealSchur<MatrixType> schurOfA(arg);

Completed in 1410 milliseconds