Home
last modified time | relevance | path

Searched refs:applyOnTheRight (Results 1 – 11 of 11) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
DComplexSchur.h372 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);
DRealSchur.h325 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
328 m_matU.applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
DSelfAdjointEigenSolver.h780 q.applyOnTheRight(k,k+1,rot);
/external/eigen/doc/snippets/
DJacobi_makeJacobi.cpp7 m.applyOnTheRight(0, 1, J);
/external/eigen/Eigen/
DJacobi17 * - MatrixBase::applyOnTheRight().
/external/eigen/test/
Djacobi.cpp56 b.applyOnTheRight(p, q, rot); in jacobi()
/external/eigen/Eigen/src/Core/
DEigenBase.h145 inline void MatrixBase<Derived>::applyOnTheRight(const EigenBase<OtherDerived> &other) in applyOnTheRight() function
DMatrixBase.h187 void applyOnTheRight(const EigenBase<OtherDerived>& other);
444 void applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j);
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h379 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
778 if(computeU()) m_matrixU.applyOnTheRight(p,q,j_left.transpose());
780 m_workMatrix.applyOnTheRight(p,q,j_right);
781 if(computeV()) m_matrixV.applyOnTheRight(p,q,j_right);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixFunction.h355 m_T.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur()
356 m_U.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h284 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar… in applyOnTheRight() function