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
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/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);
Completed in 51 milliseconds