Searched refs:applyOnTheRight (Results 1 – 13 of 13) sorted by relevance
/external/eigen/Eigen/src/Eigenvalues/ |
D | RealQZ.h | 245 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 …]
|
D | ComplexSchur.h | 432 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);
|
D | RealSchur.h | 385 m_matT.topRows(iu+1).applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows() 388 m_matU.applyOnTheRight(iu-1, iu, rot); in splitOffTwoRows()
|
D | SelfAdjointEigenSolver.h | 789 q.applyOnTheRight(k,k+1,rot);
|
/external/eigen/doc/snippets/ |
D | MatrixBase_applyOnTheRight.cpp | 8 A.applyOnTheRight(B); // equivalent to A *= B
|
D | Jacobi_makeJacobi.cpp | 7 m.applyOnTheRight(0, 1, J);
|
/external/eigen/Eigen/ |
D | Jacobi | 17 * - MatrixBase::applyOnTheRight().
|
/external/eigen/test/ |
D | jacobi.cpp | 55 b.applyOnTheRight(p, q, rot); in jacobi()
|
/external/eigen/Eigen/src/Core/ |
D | MatrixBase.h | 188 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/ |
D | JacobiSVD.h | 392 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/ |
D | JacobiSVD.h | 397 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/ |
D | MatrixFunction.h | 356 m_T.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur() 357 m_U.applyOnTheRight(index, index+1, rotation); in swapEntriesInSchur()
|
/external/eigen/Eigen/src/Jacobi/ |
D | Jacobi.h | 292 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar… in applyOnTheRight() function
|