Searched defs:llt (Results 1 - 3 of 3) sorted by relevance

/external/eigen/doc/examples/
H A DTutorialLinAlgComputeTwice.cpp10 LLT<Matrix2f> llt; local
16 llt.compute(A);
17 cout << "The solution is:\n" << llt.solve(b) << endl;
21 llt.compute(A);
22 cout << "The solution is now:\n" << llt.solve(b) << endl;
/external/eigen/test/
H A Dcholesky.cpp173 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB);
174 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
176 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
177 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
179 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB);
180 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB));
182 m2.noalias() -= symmLo.template selfadjointView<Lower>().llt().solve(matB);
183 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB));
269 LLT<MatrixType> llt; local
270 VERIFY_RAISES_ASSERT(llt
[all...]
/external/eigen/Eigen/src/Cholesky/
H A DLLT.h44 * \sa MatrixBase::llt(), class LDLT
118 * \sa solveInPlace(), MatrixBase::llt()
444 * \sa LLT::solve(), MatrixBase::llt()
471 MatrixBase<Derived>::llt() const function in class:Eigen::MatrixBase
481 SelfAdjointView<MatrixType, UpLo>::llt() const function in class:Eigen::SelfAdjointView

Completed in 104 milliseconds