Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h245 m_Q.applyOnTheRight(i-1,i,G); in hessenbergTriangular()
252 m_S.applyOnTheRight(i,i-1,G); in hessenbergTriangular()
253 m_T.topRows(i).applyOnTheRight(i,i-1,G); in hessenbergTriangular()
340 m_Q.applyOnTheRight(i,i+1,G); in splitOffTwoRows()
343 m_S.topRows(i+2).applyOnTheRight(i+1,i,G); in splitOffTwoRows()
344 m_T.topRows(i+2).applyOnTheRight(i+1,i,G); in splitOffTwoRows()
375 m_Q.applyOnTheRight(zz,zz+1,G); in pushDownZero()
380 m_S.topRows(zz+2).applyOnTheRight(zz, zz-1,G); in pushDownZero()
381 m_T.topRows(zz+1).applyOnTheRight(zz, zz-1,G); in pushDownZero()
390 m_S.applyOnTheRight(l,l-1,G); in pushDownZero()
[all …]
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);
DRealSchur.h385 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
388 m_matU.applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
DSelfAdjointEigenSolver.h789 q.applyOnTheRight(k,k+1,rot);
/external/eigen/doc/snippets/
DMatrixBase_applyOnTheRight.cpp8 A.applyOnTheRight(B); // equivalent to A *= B
DJacobi_makeJacobi.cpp7 m.applyOnTheRight(0, 1, J);
/external/eigen/Eigen/
DJacobi17 * - MatrixBase::applyOnTheRight().
/external/eigen/test/
Djacobi.cpp55 b.applyOnTheRight(p, q, rot); in jacobi()
/external/eigen/Eigen/src/Core/
DMatrixBase.h188 void applyOnTheRight(const EigenBase<OtherDerived>& other);
441 void applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j);
535 inline void MatrixBase<Derived>::applyOnTheRight(const EigenBase<OtherDerived> &other) in applyOnTheRight() function
/external/eigen/unsupported/Eigen/src/SVD/
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/Eigen/src/SVD/
DJacobiSVD.h397 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
890 if(computeU()) m_matrixU.applyOnTheRight(p,q,j_left.transpose());
892 m_workMatrix.applyOnTheRight(p,q,j_right);
893 if(computeV()) m_matrixV.applyOnTheRight(p,q,j_right);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixFunction.h356 m_T.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur()
357 m_U.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h292 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar… in applyOnTheRight() function