Home | History | Annotate | Download | only in LU

Lines Matching refs:FullPivLU

17   * \class FullPivLU
43 * \sa MatrixBase::fullPivLu(), MatrixBase::determinant(), MatrixBase::inverse()
45 template<typename _MatrixType> class FullPivLU
71 FullPivLU();
77 * \sa FullPivLU()
79 FullPivLU(Index rows, Index cols);
86 FullPivLU(const MatrixType& matrix);
95 FullPivLU& compute(const MatrixType& matrix);
99 * case, special care is needed, see the documentation of class FullPivLU).
161 inline const internal::kernel_retval<FullPivLU> kernel() const
164 return internal::kernel_retval<FullPivLU>(*this);
186 inline const internal::image_retval<FullPivLU>
190 return internal::image_retval<FullPivLU>(*this, originalMatrix);
213 inline const internal::solve_retval<FullPivLU, Rhs>
217 return internal::solve_retval<FullPivLU, Rhs>(*this, b.derived());
254 FullPivLU& setThreshold(const RealScalar& threshold)
269 FullPivLU& setThreshold(Default_t)
361 inline const internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType> inverse() const
365 return internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType>
386 FullPivLU<MatrixType>::FullPivLU()
392 FullPivLU<MatrixType>::FullPivLU(Index rows, Index cols)
404 FullPivLU<MatrixType>::FullPivLU(const MatrixType& matrix)
417 FullPivLU<MatrixType>& FullPivLU<MatrixType>::compute(const MatrixType& matrix)
502 typename internal::traits<MatrixType>::Scalar FullPivLU<MatrixType>::determinant() const
513 MatrixType FullPivLU<MatrixType>::reconstructedMatrix() const
538 struct kernel_retval<FullPivLU<_MatrixType> >
539 : kernel_retval_base<FullPivLU<_MatrixType> >
541 EIGEN_MAKE_KERNEL_HELPERS(FullPivLU<_MatrixType>)
623 struct image_retval<FullPivLU<_MatrixType> >
624 : image_retval_base<FullPivLU<_MatrixType> >
626 EIGEN_MAKE_IMAGE_HELPERS(FullPivLU<_MatrixType>)
660 struct solve_retval<FullPivLU<_MatrixType>, Rhs>
661 : solve_retval_base<FullPivLU<_MatrixType>, Rhs>
663 EIGEN_MAKE_SOLVE_HELPERS(FullPivLU<_MatrixType>,Rhs)
725 * \sa class FullPivLU
728 inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
729 MatrixBase<Derived>::fullPivLu() const
731 return FullPivLU<PlainObject>(eval());