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

  /external/eigen/doc/snippets/
FullPivLU_image.cpp 9 << endl << m.fullPivLu().image(m) << endl;
FullPivLU_kernel.cpp 3 MatrixXf ker = m.fullPivLu().kernel();
FullPivLU_solve.cpp 5 Matrix<float,3,2> x = m.fullPivLu().solve(y);
Tutorial_solve_multiple_rhs.cpp 6 X = A.fullPivLu().solve(B);
  /external/eigen/doc/examples/
TutorialLinAlgExComputeSolveError.cpp 11 MatrixXd x = A.fullPivLu().solve(b);
  /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); );
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 179 sqrtT.template block<1,2>(i,j).transpose() = A.fullPivLu().solve(rhs.transpose());
193 sqrtT.template block<2,1>(i,j) = A.fullPivLu().solve(rhs);
243 result = coeffMatrix.fullPivLu().solve(rhs);
  /external/eigen/bench/btl/libs/eigen3/
eigen3_interface.hh 215 C = X.fullPivLu().matrixLU();
  /external/eigen/Eigen/src/Core/
MatrixBase.h 324 const FullPivLU<PlainObject> fullPivLu() const;
  /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...]

Completed in 121 milliseconds