Searched refs:applyOnTheRight (Results 1 - 12 of 12) sorted by relevance

/external/eigen/doc/snippets/
H A DJacobi_makeJacobi.cpp7 m.applyOnTheRight(0, 1, J);
H A DMatrixBase_applyOnTheRight.cpp8 A.applyOnTheRight(B); // equivalent to A *= B
9 cout << "After applyOnTheRight, A = " << endl << A << endl;
/external/eigen/Eigen/src/Eigenvalues/
H A DRealQZ.h246 m_Q.applyOnTheRight(i-1,i,G);
252 m_S.applyOnTheRight(i,i-1,G);
253 m_T.topRows(i).applyOnTheRight(i,i-1,G);
340 m_Q.applyOnTheRight(i,i+1,G);
343 m_S.topRows(i+2).applyOnTheRight(i+1,i,G);
344 m_T.topRows(i+2).applyOnTheRight(i+1,i,G);
375 m_Q.applyOnTheRight(zz,zz+1,G);
380 m_S.topRows(zz+2).applyOnTheRight(zz, zz-1,G);
381 m_T.topRows(zz+1).applyOnTheRight(zz, zz-1,G);
390 m_S.applyOnTheRight(
[all...]
H A DComplexSchur.h432 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
433 if(computeU) m_matU.applyOnTheRight(il, il+1, rot);
440 m_matT.topRows((std::min)(i+2,iu)+1).applyOnTheRight(i, i+1, rot);
441 if(computeU) m_matU.applyOnTheRight(i, i+1, rot);
H A DRealSchur.h387 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot);
390 m_matU.applyOnTheRight(iu-1, iu, rot);
H A DSelfAdjointEigenSolver.h793 q.applyOnTheRight(k,k+1,rot);
/external/eigen/test/
H A Djacobi.cpp55 b.applyOnTheRight(p, q, rot);
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h190 void applyOnTheRight(const EigenBase<OtherDerived>& other);
447 void applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j);
541 inline void MatrixBase<Derived>::applyOnTheRight(const EigenBase<OtherDerived> &other) function in class:Eigen::MatrixBase
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h397 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
875 if(computeU()) m_matrixU.applyOnTheRight(p,q,j_left.transpose());
877 m_workMatrix.applyOnTheRight(p,q,j_right);
878 if(computeV()) m_matrixV.applyOnTheRight(p,q,j_right);
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h392 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
693 if(SVDBase<MatrixType>::computeU()) this->m_matrixU.applyOnTheRight(p,q,j_left.transpose());
695 m_workMatrix.applyOnTheRight(p,q,j_right);
696 if(SVDBase<MatrixType>::computeV()) this->m_matrixV.applyOnTheRight(p,q,j_right);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h356 m_T.applyOnTheRight(index, index+1, rotation);
357 m_U.applyOnTheRight(index, index+1, rotation);
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h32 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
80 * \sa MatrixBase::makeJacobi(const MatrixBase<Derived>&, Index, Index), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
122 * \sa JacobiRotation::makeJacobi(RealScalar, Scalar, RealScalar), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
145 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
262 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
273 * \sa class JacobiRotation, MatrixBase::applyOnTheRight(), internal::apply_rotation_in_the_plane()
292 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j)

Completed in 2111 milliseconds