Lines Matching refs:FullPivLU

46 template<typename _MatrixType> class FullPivLU
72 FullPivLU();
80 FullPivLU(Index rows, Index cols);
87 FullPivLU(const MatrixType& matrix);
96 FullPivLU& compute(const MatrixType& matrix);
162 inline const internal::kernel_retval<FullPivLU> kernel() const in kernel()
165 return internal::kernel_retval<FullPivLU>(*this); in kernel()
187 inline const internal::image_retval<FullPivLU>
191 return internal::image_retval<FullPivLU>(*this, originalMatrix); in image()
214 inline const internal::solve_retval<FullPivLU, Rhs>
218 return internal::solve_retval<FullPivLU, Rhs>(*this, b.derived()); in solve()
255 FullPivLU& setThreshold(const RealScalar& threshold) in setThreshold()
270 FullPivLU& setThreshold(Default_t) in setThreshold()
363 …inline const internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType> inverse() c… in inverse()
367 return internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType> in inverse()
388 FullPivLU<MatrixType>::FullPivLU() in FullPivLU() function
394 FullPivLU<MatrixType>::FullPivLU(Index rows, Index cols) in FullPivLU() function
406 FullPivLU<MatrixType>::FullPivLU(const MatrixType& matrix) in FullPivLU() function
419 FullPivLU<MatrixType>& FullPivLU<MatrixType>::compute(const MatrixType& matrix) in compute()
507 typename internal::traits<MatrixType>::Scalar FullPivLU<MatrixType>::determinant() const in determinant()
518 MatrixType FullPivLU<MatrixType>::reconstructedMatrix() const in reconstructedMatrix()
543 struct kernel_retval<FullPivLU<_MatrixType> >
544 : kernel_retval_base<FullPivLU<_MatrixType> >
546 EIGEN_MAKE_KERNEL_HELPERS(FullPivLU<_MatrixType>)
629 struct image_retval<FullPivLU<_MatrixType> >
630 : image_retval_base<FullPivLU<_MatrixType> >
632 EIGEN_MAKE_IMAGE_HELPERS(FullPivLU<_MatrixType>)
667 struct solve_retval<FullPivLU<_MatrixType>, Rhs>
668 : solve_retval_base<FullPivLU<_MatrixType>, Rhs>
670 EIGEN_MAKE_SOLVE_HELPERS(FullPivLU<_MatrixType>,Rhs)
735 inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
738 return FullPivLU<PlainObject>(eval());