HomeSort by relevance Sort by last modified time
    Searched defs:solveInPlace (Results 1 - 5 of 5) sorted by null

  /external/eigen/Eigen/src/SparseCore/
TriangularSolver.h 166 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(MatrixBase<OtherDerived>& other) const
189 solveInPlace(res);
291 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(SparseMatrixBase<OtherDerived>& other) const
317 this->template triangular<Flags&(Upper|Lower)>().solveInPlace(other);
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 194 bool solveInPlace(MatrixBase<Derived> &bAndX) const;
491 dec().matrixL().solveInPlace(dst);
511 dec().matrixU().solveInPlace(dst);
534 bool LDLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const
LLT.h 118 * \sa solveInPlace(), MatrixBase::llt()
142 void solveInPlace(MatrixBase<Derived> &bAndX) const;
316 if(rs>0) A11.adjoint().template triangularView<Upper>().template solveInPlace<OnTheRight>(A21);
428 dec().solveInPlace(dst);
448 void LLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const
452 matrixL().solveInPlace(bAndX);
453 matrixU().solveInPlace(bAndX);
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 174 void TriangularView<MatrixType,Mode>::solveInPlace(const MatrixBase<OtherDerived>& _other) const
208 * For users coming from BLAS, this function (and more specifically solveInPlace()) offer
211 * \sa TriangularView::solveInPlace()
248 m_triangularMatrix.template solveInPlace<Side>(dst);
TriangularMatrix.h 333 void solveInPlace(const MatrixBase<OtherDerived>& other) const;
341 void solveInPlace(const MatrixBase<OtherDerived>& other) const
342 { return solveInPlace<OnTheLeft>(other); }

Completed in 199 milliseconds