OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:partialPivLu
(Results
1 - 6
of
6
) sorted by null
/external/eigen/Eigen/src/LU/
Determinant.h
41
return m.
partialPivLu
().determinant();
Inverse.h
26
result = matrix.
partialPivLu
().inverse();
303
* In the general case, this method uses class
PartialPivLU
.
PartialPivLU.h
18
* \class
PartialPivLU
45
* \sa MatrixBase::
partialPivLu
(), MatrixBase::determinant(), MatrixBase::inverse(), MatrixBase::computeInverse(), class FullPivLU
47
template<typename _MatrixType> class
PartialPivLU
71
* perform decompositions via
PartialPivLU
::compute(const MatrixType&).
73
PartialPivLU
();
79
* \sa
PartialPivLU
()
81
PartialPivLU
(Index size);
90
PartialPivLU
(const MatrixType& matrix);
92
PartialPivLU
& compute(const MatrixType& matrix);
102
eigen_assert(m_isInitialized && "
PartialPivLU
is not initialized.")
[
all
...]
/external/ceres-solver/internal/ceres/
dogleg_strategy.cc
444
return -B_i.
partialPivLu
().solve(subspace_g_);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h
194
result = m_tmp2.
partialPivLu
().solve(m_tmp1);
/external/eigen/Eigen/src/Core/
MatrixBase.h
325
const
PartialPivLU
<PlainObject>
partialPivLu
() const;
336
const
PartialPivLU
<PlainObject> lu() const;
Completed in 653 milliseconds