OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:matrixL
(Results
1 - 5
of
5
) sorted by null
/external/eigen/Eigen/src/Cholesky/
LDLT.h
117
inline typename Traits::
MatrixL
matrixL
() const
409
typedef const TriangularView<const MatrixType, UnitLower>
MatrixL
;
411
static inline
MatrixL
getL(const MatrixType& m) { return m; }
417
typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower>
MatrixL
;
419
static inline
MatrixL
getL(const MatrixType& m) { return m.adjoint(); }
491
dec().
matrixL
().solveInPlace(dst);
563
res =
matrixL
() * res;
LLT.h
104
inline typename Traits::
MatrixL
matrixL
() const
355
typedef const TriangularView<const MatrixType, Lower>
MatrixL
;
357
static inline
MatrixL
getL(const MatrixType& m) { return m; }
365
typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower>
MatrixL
;
367
static inline
MatrixL
getL(const MatrixType& m) { return m.adjoint(); }
452
matrixL
().solveInPlace(bAndX);
463
return
matrixL
() *
matrixL
().adjoint().toDenseMatrix();
/external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h
167
inline const LUMatrixType&
matrixL
() const
/external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h
206
derived().
matrixL
().solveInPlace(dest);
317
typedef SparseTriangularView<CholMatrixType, Eigen::Lower>
MatrixL
;
319
static inline
MatrixL
getL(const MatrixType& m) { return m; }
330
typedef SparseTriangularView<CholMatrixType, Eigen::UnitLower>
MatrixL
;
332
static inline
MatrixL
getL(const MatrixType& m) { return m; }
374
typedef typename Traits::
MatrixL
MatrixL
;
384
inline const
MatrixL
matrixL
() const {
462
typedef typename Traits::
MatrixL
MatrixL
[
all
...]
/external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h
534
inline const LMatrixType&
matrixL
() const
Completed in 93 milliseconds