HomeSort by relevance Sort by last modified time
    Searched refs:FullPivLU (Results 1 - 10 of 10) sorted by null

  /external/eigen/doc/examples/
TutorialLinAlgRankRevealing.cpp 14 FullPivLU<Matrix3f> lu_decomp(A);
TutorialLinAlgSetThreshold.cpp 12 FullPivLU<Matrix2d> lu(A);
  /external/eigen/Eigen/src/LU/
FullPivLU.h 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() cons
    [all...]
  /external/eigen/doc/snippets/
class_FullPivLU.cpp 5 Eigen::FullPivLU<Matrix5x3> lu(m);
  /external/eigen/test/
lu.cpp 45 typedef typename internal::kernel_retval_base<FullPivLU<MatrixType> >::ReturnType KernelMatrixType;
46 typedef typename internal::image_retval_base<FullPivLU<MatrixType> >::ReturnType ImageMatrixType;
55 VERIFY((MatrixType::Zero(rows,cols).fullPivLu().image(MatrixType::Zero(rows,cols)).cols() == 1));
61 FullPivLU<MatrixType> lu;
87 VERIFY(m1image.fullPivLu().rank() == rank);
108 FullPivLU<MatrixType> lu;
122 VERIFY(lu.image(m1).fullPivLu().isInvertible());
151 FullPivLU<MatrixType> lu;
205 CALL_SUBTEST_9( FullPivLU<MatrixXf>(10, 20); );
nomalloc.cpp 144 Eigen::FullPivLU<Matrix> fpLU; fpLU.compute(A);
  /external/eigen/Eigen/src/Eigen2Support/
LU.h 16 class LU : public FullPivLU<MatrixType>
46 typedef FullPivLU<MatrixType> Base;
  /external/eigen/bench/
sparse_lu.cpp 101 FullPivLU<DenseMatrix> lu(m1);
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 217 template<typename MatrixType> class FullPivLU;
  /external/eigen/Eigen/src/Core/
MatrixBase.h 324 const FullPivLU<PlainObject> fullPivLu() const;

Completed in 105 milliseconds