Searched defs:solveInPlace (Results 1 - 7 of 7) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DTriangularSolver.h166 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(MatrixBase<OtherDerived>& other) const function in class:Eigen::SparseTriangularView
189 solveInPlace(res);
291 void SparseTriangularView<ExpressionType,Mode>::solveInPlace(SparseMatrixBase<OtherDerived>& other) const function in class:Eigen::SparseTriangularView
317 this->template triangular<Flags&(Upper|Lower)>().solveInPlace(other);
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h174 void TriangularView<MatrixType,Mode>::solveInPlace(const MatrixBase<OtherDerived>& _other) const function in class:Eigen::TriangularView
208 * For users coming from BLAS, this function (and more specifically solveInPlace()) offer
211 * \sa TriangularView::solveInPlace()
248 m_triangularMatrix.template solveInPlace<Side>(dst);
H A DTriangularMatrix.h333 void solveInPlace(const MatrixBase<OtherDerived>& other) const;
341 void solveInPlace(const MatrixBase<OtherDerived>& other) const function in class:Eigen::TriangularView
342 { return solveInPlace<OnTheLeft>(other); }
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h204 bool solveInPlace(MatrixBase<Derived> &bAndX) const;
498 dec().matrixL().solveInPlace(dst);
524 dec().matrixU().solveInPlace(dst);
547 bool LDLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const function in class:Eigen::LDLT
H A DLLT.h118 * \sa solveInPlace(), MatrixBase::llt()
142 void solveInPlace(MatrixBase<Derived> &bAndX) const;
318 if(rs>0) A11.adjoint().template triangularView<Upper>().template solveInPlace<OnTheRight>(A21);
430 dec().solveInPlace(dst);
450 void LLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const function in class:Eigen::LLT
454 matrixL().solveInPlace(bAndX);
455 matrixU().solveInPlace(bAndX);
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_SupernodalMatrix.h158 void solveInPlace( MatrixBase<Dest>&X) const;
234 void MappedSuperNodalMatrix<Scalar,Index>::solveInPlace( MatrixBase<Dest>&X) const function in class:Eigen::internal::MappedSuperNodalMatrix
H A DSparseLU.h131 * y = b; matrixL().solveInPlace(y);
141 * y = b; matrixU().solveInPlace(y);
238 this->matrixL().solveInPlace(X);
239 this->matrixU().solveInPlace(X);
665 void solveInPlace( MatrixBase<Dest> &X) const function in struct:Eigen::SparseLUMatrixLReturnType
667 m_mapL.solveInPlace(X);
683 template<typename Dest> void solveInPlace(MatrixBase<Dest> &X) const function in struct:Eigen::SparseLUMatrixUReturnType

Completed in 160 milliseconds