OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatrixU
(Results
1 - 3
of
3
) sorted by null
/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/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);
Completed in 263 milliseconds