HomeSort by relevance Sort by last modified time
    Searched defs:matrixU (Results 1 - 9 of 9) sorted by null

  /external/eigen/Eigen/src/Cholesky/
LDLT.h 110 inline typename Traits::MatrixU matrixU() const
410 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
412 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
418 typedef const TriangularView<const MatrixType, UnitUpper> MatrixU;
420 static inline MatrixU getU(const MatrixType& m) { return m; }
511 dec().matrixU().solveInPlace(dst);
559 res = matrixU() * res;
LLT.h 97 inline typename Traits::MatrixU matrixU() const
356 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
358 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
366 typedef const TriangularView<const MatrixType, Upper> MatrixU;
368 static inline MatrixU getU(const MatrixType& m) { return m; }
453 matrixU().solveInPlace(bAndX);
  /external/eigen/Eigen/src/Eigen2Support/
SVD.h 64 const MatrixUType& matrixU() const { return m_matU; }
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 44 * decomposition is computed, you can use the matrixU() and matrixT()
109 * \sa matrixT() and matrixU() for examples.
135 const ComplexMatrixType& matrixU() const
RealSchur.h 42 * time. Once the decomposition is computed, you can use the matrixU() and
124 const MatrixType& matrixU() const
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 173 inline const LUMatrixType& matrixU() const
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 588 const MatrixUType& matrixU() const
    [all...]
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 212 derived().matrixU().solveInPlace(dest);
318 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU;
320 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
331 typedef SparseTriangularView<typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU;
333 static inline MatrixU getU(const MatrixType& m) { return m.adjoint(); }
375 typedef typename Traits::MatrixU MatrixU;
390 inline const MatrixU matrixU() const {
463 typedef typename Traits::MatrixU MatrixU
    [all...]
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 540 inline const UMatrixType& matrixU() const

Completed in 73 milliseconds