Home
last modified time | relevance | path

Searched refs:applyOnTheRight (Results 1 – 14 of 14) 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.h435 m_matT.topRows((std::min)(il+2,iu)+1).applyOnTheRight(il, il+1, rot);
436 if(computeU) m_matU.applyOnTheRight(il, il+1, rot);
443 m_matT.topRows((std::min)(i+2,iu)+1).applyOnTheRight(i, i+1, rot);
444 if(computeU) m_matU.applyOnTheRight(i, i+1, rot);
DRealSchur.h406 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
409 m_matU.applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
DSelfAdjointEigenSolver.h861 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/
DJacobi24 * - MatrixBase::applyOnTheRight().
/external/eigen/Eigen/src/Core/
DMatrixBase.h189 void applyOnTheRight(const EigenBase<OtherDerived>& other);
442 void applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j);
511 inline void MatrixBase<Derived>::applyOnTheRight(const EigenBase<OtherDerived> &other) in applyOnTheRight() function
/external/eigen/test/
Djacobi.cpp55 b.applyOnTheRight(p, q, rot); in jacobi()
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h403 if(svd.computeU()) svd.m_matrixU.applyOnTheRight(p,q,rot.adjoint());
726 if(computeU()) m_matrixU.applyOnTheRight(p,q,j_left.transpose());
728 m_workMatrix.applyOnTheRight(p,q,j_right);
729 if(computeV()) m_matrixV.applyOnTheRight(p,q,j_right);
DBDCSVD.h994 if (m_compU) m_naiveU.middleRows(firstCol, size+1).applyOnTheRight(firstCol, firstCol+i, J);
995 else m_naiveU.applyOnTheRight(firstCol, firstCol+i, J);
1036 …if (m_compU) m_naiveU.middleRows(firstColu, size+1).applyOnTheRight(firstColu + i, firstColu + j,…
1037 else m_naiveU.applyOnTheRight(firstColu+i, firstColu+j, J);
1038 …if (m_compV) m_naiveV.middleRows(firstRowW, size).applyOnTheRight(firstColW + i, firstColW + j, J…
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h510 m_T.applyOnTheRight(j-1, j, rot); in initialize()
514 m_U.applyOnTheRight(j-1, j, rot); in initialize()
DMatrixFunction.h233 T.applyOnTheRight(k, k+1, rotation); in matrix_function_permute_schur()
234 U.applyOnTheRight(k, k+1, rotation); in matrix_function_permute_schur()
/external/eigen/Eigen/src/Jacobi/
DJacobi.h293 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar… in applyOnTheRight() function