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

  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 44 * decomposition is computed, you can use the matrixU() and matrixT()
110 * \sa matrixT() and matrixU() for examples.
138 const ComplexMatrixType& matrixU() const
RealSchur.h 42 * time. Once the decomposition is computed, you can use the matrixU() and
127 const MatrixType& matrixU() const
  /external/eigen/Eigen/src/SVD/
SVDBase.h 83 const MatrixUType& matrixU() const
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 141 inline typename Traits::MatrixU matrixU() const
471 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitUpper> MatrixU;
473 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); }
479 typedef const TriangularView<const MatrixType, UnitUpper> MatrixU;
481 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); }
588 matrixU().solveInPlace(dst);
634 res = matrixU() * res
    [all...]
LLT.h 115 inline typename Traits::MatrixU matrixU() const
393 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Upper> MatrixU;
395 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); }
403 typedef const TriangularView<const MatrixType, Upper> MatrixU;
405 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m); }
497 matrixU().solveInPlace(bAndX);
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 176 derived().matrixU().solveInPlace(dest);
281 typedef TriangularView<const typename CholMatrixType::AdjointReturnType, Eigen::Upper> MatrixU;
283 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); }
295 typedef TriangularView<const typename CholMatrixType::AdjointReturnType, Eigen::UnitUpper> MatrixU;
297 static inline MatrixU getU(const MatrixType& m) { return MatrixU(m.adjoint()); }
343 typedef typename Traits::MatrixU MatrixU;
358 inline const MatrixU matrixU() const
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 219 inline const LUMatrixType& matrixU() const
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 153 * y = b; matrixU().solveInPlace(y);
156 SparseLUMatrixUReturnType<SCMatrix,MappedSparseMatrix<Scalar,ColMajor,StorageIndex> > matrixU() const
234 this->matrixU().solveInPlace(X);
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 549 inline const UMatrixType& matrixU() const
    [all...]

Completed in 3221 milliseconds