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

  /external/eigen/doc/snippets/
Jacobi_makeJacobi.cpp 7 m.applyOnTheRight(0, 1, J);
  /external/eigen/Eigen/src/Eigenvalues/
ComplexSchur.h 372 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
373 if(computeU) m_matU.applyOnTheRight(il, il+1, rot);
380 m_matT.topRows((std::min)(i+2,iu)+1).applyOnTheRight(i, i+1, rot);
381 if(computeU) m_matU.applyOnTheRight(i, i+1, rot);
RealSchur.h 325 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot);
328 m_matU.applyOnTheRight(iu-1, iu, rot);
SelfAdjointEigenSolver.h 780 q.applyOnTheRight(k,k+1,rot);
  /external/eigen/Eigen/src/Core/
EigenBase.h 75 /** \internal Don't use it, but do the equivalent: \code dst.applyOnTheRight(*this); \endcode */
145 inline void MatrixBase<Derived>::applyOnTheRight(const EigenBase<OtherDerived> &other)
MatrixBase.h 187 void applyOnTheRight(const EigenBase<OtherDerived>& other);
444 void applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j);
  /external/eigen/test/
jacobi.cpp 56 b.applyOnTheRight(p, q, rot);
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 379 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 355 m_T.applyOnTheRight(index, index+1, rotation);
356 m_U.applyOnTheRight(index, index+1, rotation);
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 32 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
79 * \sa MatrixBase::makeJacobi(const MatrixBase<Derived>&, Index, Index), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
119 * \sa JacobiRotation::makeJacobi(RealScalar, Scalar, RealScalar), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
142 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
254 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
265 * \sa class JacobiRotation, MatrixBase::applyOnTheRight(), internal::apply_rotation_in_the_plane()
284 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j)

Completed in 397 milliseconds