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

  /external/eigen/doc/snippets/
LLT_example.cpp 6 MatrixXd L = lltOfA.matrixL(); // retrieve factor L in the decomposition
7 // The previous two lines can also be written as "L = A.llt().matrixL()"
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 185 cholB.matrixL().template solveInPlace<OnTheLeft>(matC);
198 matC = matC * cholB.matrixL();
211 matC = matC * cholB.matrixL();
218 Base::m_eivec = cholB.matrixL() * Base::m_eivec;
  /external/eigen/test/
cholesky.cpp 123 VERIFY_IS_APPROX(MatrixType(chollo.matrixL().transpose().conjugate()), MatrixType(chollo.matrixU()));
124 VERIFY_IS_APPROX(MatrixType(chollo.matrixU().transpose().conjugate()), MatrixType(chollo.matrixL()));
125 VERIFY_IS_APPROX(MatrixType(cholup.matrixL().transpose().conjugate()), MatrixType(cholup.matrixU()));
126 VERIFY_IS_APPROX(MatrixType(cholup.matrixU().transpose().conjugate()), MatrixType(cholup.matrixL()));
189 VERIFY_IS_APPROX(MatrixType(ldltlo.matrixL().transpose().conjugate()), MatrixType(ldltlo.matrixU()));
190 VERIFY_IS_APPROX(MatrixType(ldltlo.matrixU().transpose().conjugate()), MatrixType(ldltlo.matrixL()));
191 VERIFY_IS_APPROX(MatrixType(ldltup.matrixL().transpose().conjugate()), MatrixType(ldltup.matrixU()));
192 VERIFY_IS_APPROX(MatrixType(ldltup.matrixU().transpose().conjugate()), MatrixType(ldltup.matrixL()));
462 VERIFY_RAISES_ASSERT(llt.matrixL())
468 VERIFY_RAISES_ASSERT(ldlt.matrixL())
    [all...]
  /external/eigen/bench/
benchCholesky.cpp 60 acc += cholnosqrt.matrixL().coeff(r,c);
71 acc += chol.matrixL().coeff(r,c);
sparse_cholesky.cpp 73 std::cout << " nnz: " << sm1.nonZeros() << " => " << chol.matrixL().nonZeros() << "\n";
74 // std::cout << "sparse\n" << chol.matrixL() << "%\n";
119 if (!internal::isMuchSmallerThan(internal::abs(chol.matrixL()(i,j)), 0.1))
122 // std::cout << "dense:\n" << m1 << "\n\n" << chol.matrixL() << endl;
  /external/eigen/Eigen/src/Cholesky/
LLT.h 122 inline typename Traits::MatrixL matrixL() const
392 typedef const TriangularView<const MatrixType, Lower> MatrixL;
394 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
402 typedef const TriangularView<const typename MatrixType::AdjointReturnType, Lower> MatrixL;
404 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
496 matrixL().solveInPlace(bAndX);
507 return matrixL() * matrixL().adjoint().toDenseMatrix()
    [all...]
LDLT.h 148 inline typename Traits::MatrixL matrixL() const
470 typedef const TriangularView<const MatrixType, UnitLower> MatrixL;
472 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
478 typedef const TriangularView<const typename MatrixType::AdjointReturnType, UnitLower> MatrixL;
480 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m.adjoint()); }
565 matrixL().solveInPlace(dst);
638 res = matrixL() * res
    [all...]
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 170 derived().matrixL().solveInPlace(dest);
280 typedef TriangularView<const CholMatrixType, Eigen::Lower> MatrixL;
282 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
294 typedef TriangularView<const CholMatrixType, Eigen::UnitLower> MatrixL;
296 static inline MatrixL getL(const MatrixType& m) { return MatrixL(m); }
342 typedef typename Traits::MatrixL MatrixL;
352 inline const MatrixL matrixL() const
    [all...]
  /external/eigen/bench/btl/libs/eigen2/
eigen2_interface.hh 145 C = X.llt().matrixL();
  /external/eigen/Eigen/src/SparseLU/
SparseLU.h 143 * y = b; matrixL().solveInPlace(y);
146 SparseLUMatrixLReturnType<SCMatrix> matrixL() const
233 this->matrixL().solveInPlace(X);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteCholesky.h 169 const FactorType& matrixL() const { eigen_assert("m_factorizationIsOk"); return m_L; }
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 194 inline const LUMatrixType& matrixL() const
  /external/eigen/unsupported/Eigen/src/Eigenvalues/
ArpackSelfAdjointEigenSolver.h 772 Matrix<Scalar, Dynamic, 1>::Map(out, n) = OP.matrixL().solve(Matrix<Scalar, Dynamic, 1>::Map(out, n));
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 543 inline const LMatrixType& matrixL() const
    [all...]

Completed in 2260 milliseconds