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

  /external/eigen/failtest/
fullpivlu_int.cpp 13 FullPivLU<Matrix<SCALAR,Dynamic,Dynamic> > lu(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
  /external/eigen/Eigen/src/LU/
FullPivLU.h 16 template<typename _MatrixType> struct traits<FullPivLU<_MatrixType> >
28 * \class FullPivLU
57 * \sa MatrixBase::fullPivLu(), MatrixBase::determinant(), MatrixBase::inverse()
59 template<typename _MatrixType> class FullPivLU
60 : public SolverBase<FullPivLU<_MatrixType> >
64 typedef SolverBase<FullPivLU> Base;
66 EIGEN_GENERIC_PUBLIC_INTERFACE(FullPivLU)
84 FullPivLU();
90 * \sa FullPivLU()
92 FullPivLU(Index rows, Index cols)
    [all...]
  /external/eigen/doc/examples/
TutorialLinAlgRankRevealing.cpp 14 FullPivLU<Matrix3f> lu_decomp(A);
TutorialLinAlgSetThreshold.cpp 12 FullPivLU<Matrix2d> lu(A);
  /external/eigen/doc/snippets/
class_FullPivLU.cpp 5 Eigen::FullPivLU<Matrix5x3> lu(m);
  /external/eigen/test/
lu.cpp 49 typedef typename internal::kernel_retval_base<FullPivLU<MatrixType> >::ReturnType KernelMatrixType;
50 typedef typename internal::image_retval_base<FullPivLU<MatrixType> >::ReturnType ImageMatrixType;
59 VERIFY((MatrixType::Zero(rows,cols).fullPivLu().image(MatrixType::Zero(rows,cols)).cols() == 1));
65 FullPivLU<MatrixType> lu;
91 VERIFY(m1image.fullPivLu().rank() == rank);
133 FullPivLU<MatrixType> lu;
147 VERIFY(lu.image(m1).fullPivLu().isInvertible());
224 FullPivLU<MatrixType> lu;
279 CALL_SUBTEST_9( FullPivLU<MatrixXf>(10, 20); );
inplace_decomposition.cpp 95 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) ));
96 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) ));
nomalloc.cpp 140 Eigen::FullPivLU<Matrix> fpLU; fpLU.compute(A);
  /external/eigen/bench/
sparse_lu.cpp 101 FullPivLU<DenseMatrix> lu(m1);
dense_solvers.cpp 51 FullPivLU<MatSquare> fplu(size,size);
77 results["FullPivLU"][id] = t_fplu.best();
92 labels.push_back("FullPivLU");
179 // cout << "FullPivLU (%) " << (results["FullPivLU"]/results["LLT"]).format(fmt) << "\n";
  /external/eigen/Eigen/src/Core/util/
ForwardDeclarations.h 249 template<typename MatrixType> class FullPivLU;
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 408 FullPivLU<MatrixType> lu(A);
  /external/eigen/Eigen/src/Core/
MatrixBase.h 333 inline const FullPivLU<PlainObject> fullPivLu() const;

Completed in 2351 milliseconds