Home
last modified time | relevance | path

Searched refs:matrixLU (Results 1 – 6 of 6) sorted by relevance

/external/eigen/doc/snippets/
Dclass_FullPivLU.cpp7 << endl << lu.matrixLU() << endl;
10 l.block<5,3>(0,0).triangularView<StrictlyLower>() = lu.matrixLU();
13 Matrix5x3 u = lu.matrixLU().triangularView<Upper>();
/external/eigen/Eigen/src/LU/
DFullPivLU.h103 inline const MatrixType& matrixLU() const in matrixLU() function
550 const Index cols = dec().matrixLU().cols(), dimker = cols - rank();
580 if(abs(dec().matrixLU().coeff(i,i)) > premultiplied_threshold)
590 m(dec().matrixLU().block(0, 0, rank(), cols));
594 m.row(i).tail(cols-i) = dec().matrixLU().row(pivots.coeff(i)).tail(cols-i);
648 if(abs(dec().matrixLU().coeff(i,i)) > premultiplied_threshold)
692 dec().matrixLU()
699 -= dec().matrixLU().bottomRows(rows-cols)
704 dec().matrixLU()
712 for(Index i = nonzero_pivots; i < dec().matrixLU().cols(); ++i)
DPartialPivLU.h100 inline const MatrixType& matrixLU() const in matrixLU() function
449 eigen_assert(rhs().rows() == dec().matrixLU().rows());
455 dec().matrixLU().template triangularView<UnitLower>().solveInPlace(dst);
458 dec().matrixLU().template triangularView<Upper>().solveInPlace(dst);
/external/eigen/test/
Dlu.cpp70 u = lu.matrixLU().template triangularView<Upper>(); in lu_non_invertible()
73 = lu.matrixLU().block(0,0,rows,(std::min)(rows,cols)); in lu_non_invertible()
152 VERIFY_RAISES_ASSERT(lu.matrixLU()) in lu_verify_assert()
167 VERIFY_RAISES_ASSERT(plu.matrixLU()) in lu_verify_assert()
/external/eigen/bench/btl/libs/eigen2/
Deigen2_interface.hh152 C = X.lu().matrixLU(); in lu_decomp()
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh215 C = X.fullPivLu().matrixLU(); in lu_decomp()