Lines Matching defs:FullPivLU

17   * \class FullPivLU
46 template<typename _MatrixType> class FullPivLU
72 FullPivLU();
78 * \sa FullPivLU()
80 FullPivLU(Index rows, Index cols);
87 FullPivLU(const MatrixType& matrix);
96 FullPivLU& compute(const MatrixType& matrix);
100 * case, special care is needed, see the documentation of class FullPivLU).
162 inline const internal::kernel_retval<FullPivLU> kernel() const
165 return internal::kernel_retval<FullPivLU>(*this);
187 inline const internal::image_retval<FullPivLU>
191 return internal::image_retval<FullPivLU>(*this, originalMatrix);
214 inline const internal::solve_retval<FullPivLU, Rhs>
218 return internal::solve_retval<FullPivLU, Rhs>(*this, b.derived());
255 FullPivLU& setThreshold(const RealScalar& threshold)
270 FullPivLU& setThreshold(Default_t)
363 inline const internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType> inverse() const
367 return internal::solve_retval<FullPivLU,typename MatrixType::IdentityReturnType>
388 FullPivLU<MatrixType>::FullPivLU()
394 FullPivLU<MatrixType>::FullPivLU(Index rows, Index cols)
406 FullPivLU<MatrixType>::FullPivLU(const MatrixType& matrix)
419 FullPivLU<MatrixType>& FullPivLU<MatrixType>::compute(const MatrixType& matrix)
507 typename internal::traits<MatrixType>::Scalar FullPivLU<MatrixType>::determinant() const
518 MatrixType FullPivLU<MatrixType>::reconstructedMatrix() const
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)
732 * \sa class FullPivLU
735 inline const FullPivLU<typename MatrixBase<Derived>::PlainObject>
738 return FullPivLU<PlainObject>(eval());