Home
last modified time | relevance | path

Searched refs:applyOnTheLeft (Results 1 – 19 of 19) sorted by relevance

/external/eigen/Eigen/src/Eigenvalues/
DRealQZ.h228 m_S.applyOnTheLeft(m_Q.adjoint()); in hessenbergTriangular()
241 m_S.rightCols(dim-j-1).applyOnTheLeft(i-1,i,G.adjoint()); in hessenbergTriangular()
242 m_T.rightCols(dim-i+1).applyOnTheLeft(i-1,i,G.adjoint()); in hessenbergTriangular()
256 m_Z.applyOnTheLeft(i,i-1,G.adjoint()); in hessenbergTriangular()
336 m_S.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); in splitOffTwoRows()
337 m_T.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); in splitOffTwoRows()
347 m_Z.applyOnTheLeft(i+1,i,G.adjoint()); in splitOffTwoRows()
370 m_S.rightCols(dim-firstColS).applyOnTheLeft(zz,zz+1,G.adjoint()); in pushDownZero()
371 m_T.rightCols(dim-zz).applyOnTheLeft(zz,zz+1,G.adjoint()); in pushDownZero()
385 m_Z.applyOnTheLeft(zz,zz-1,G.adjoint()); in pushDownZero()
[all …]
DComplexSchur.h431 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
439 m_matT.rightCols(m_matT.cols()-i).applyOnTheLeft(i, i+1, rot.adjoint());
DRealSchur.h384 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint()); in splitOffTwoRows()
/external/eigen/doc/snippets/
DMatrixBase_applyOnTheLeft.cpp6 A.applyOnTheLeft(B);
DJacobi_makeGivens.cpp5 v.applyOnTheLeft(0, 1, G.adjoint());
DJacobi_makeJacobi.cpp6 m.applyOnTheLeft(0, 1, J.adjoint());
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h133 v.applyOnTheLeft(i, i + 1, G[i].adjoint()); in gmres()
142 v.applyOnTheLeft(k - 1, k, G[k - 1].adjoint()); in gmres()
143 w.applyOnTheLeft(k - 1, k, G[k - 1].adjoint()); in gmres()
DDGMRES.h346 m_H.col(it).applyOnTheLeft(i-1,i,gr[i-1].adjoint());
351 m_H.col(it).applyOnTheLeft(it,it+1,gr[it].adjoint());
352 g.applyOnTheLeft(it,it+1, gr[it].adjoint());
/external/eigen/Eigen/
DJacobi16 * - MatrixBase::applyOnTheLeft()
/external/eigen/test/
Djacobi.cpp42 b.applyOnTheLeft(p, q, rot); in jacobi()
/external/eigen/Eigen/src/Core/
DMatrixBase.h185 void applyOnTheLeft(const EigenBase<OtherDerived>& other);
439 void applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>& j);
547 inline void MatrixBase<Derived>::applyOnTheLeft(const EigenBase<OtherDerived> &other) in applyOnTheLeft() function
/external/eigen/Eigen/src/Geometry/
DRotationBase.h83 res.linear().applyOnTheLeft(l);
/external/eigen/unsupported/Eigen/src/SVD/
DJacobiSVD.h391 work_matrix.applyOnTheLeft(p,q,rot);
432 m.applyOnTheLeft(0,1,rot1);
692 m_workMatrix.applyOnTheLeft(p,q,j_left);
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h396 work_matrix.applyOnTheLeft(p,q,rot);
440 m.applyOnTheLeft(0,1,rot1);
889 m_workMatrix.applyOnTheLeft(p,q,j_left);
/external/eigen/Eigen/src/QR/
DHouseholderQR.h332 c.applyOnTheLeft(householderSequence(
DColPivHouseholderQR.h539 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
/external/eigen/Eigen/src/Jacobi/
DJacobi.h277 inline void MatrixBase<Derived>::applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>… in applyOnTheLeft() function
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixFunction.h355 m_T.applyOnTheLeft(index, index+1, rotation.adjoint()); in swapEntriesInSchur()
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
DLevenbergMarquardt.h247 wa4.applyOnTheLeft(qrfac.householderQ().adjoint()); in minimizeOneStep()