Home
last modified time | relevance | path

Searched refs:applyOnTheLeft (Results 1 – 21 of 21) 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.h434 m_matT.rightCols(m_matT.cols()-il).applyOnTheLeft(il, il+1, rot.adjoint());
442 m_matT.rightCols(m_matT.cols()-i).applyOnTheLeft(i, i+1, rot.adjoint());
DRealSchur.h405 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint()); in splitOffTwoRows()
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h143 v.applyOnTheLeft(i, i + 1, G[i].adjoint()); in gmres()
153 v.applyOnTheLeft(k - 1, k, G[k - 1].adjoint()); in gmres()
154 w.applyOnTheLeft(k - 1, k, G[k - 1].adjoint()); in gmres()
DDGMRES.h333 m_H.col(it).applyOnTheLeft(i-1,i,gr[i-1].adjoint());
338 m_H.col(it).applyOnTheLeft(it,it+1,gr[it].adjoint());
339 g.applyOnTheLeft(it,it+1, gr[it].adjoint());
/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/Eigen/src/misc/
DRealSvd2x2.h46 m.applyOnTheLeft(0,1,rot1); in real_2x2_jacobi_svd()
/external/eigen/Eigen/
DJacobi23 * - MatrixBase::applyOnTheLeft()
/external/eigen/Eigen/src/Core/
DMatrixBase.h186 void applyOnTheLeft(const EigenBase<OtherDerived>& other);
440 void applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>& j);
523 inline void MatrixBase<Derived>::applyOnTheLeft(const EigenBase<OtherDerived> &other) in applyOnTheLeft() function
/external/eigen/test/
Djacobi.cpp42 b.applyOnTheLeft(p, q, rot); in jacobi()
/external/eigen/Eigen/src/Geometry/
DRotationBase.h83 res.linear().applyOnTheLeft(l);
/external/eigen/Eigen/src/QR/
DHouseholderQR.h358 c.applyOnTheLeft(householderSequence( in _solve_impl()
DCompleteOrthogonalDecomposition.h506 c.applyOnTheLeft(
DColPivHouseholderQR.h600 c.applyOnTheLeft(householderSequence(m_qr, m_hCoeffs)
/external/eigen/Eigen/src/SVD/
DJacobiSVD.h402 work_matrix.applyOnTheLeft(p,q,rot);
725 m_workMatrix.applyOnTheLeft(p,q,j_left);
/external/eigen/Eigen/src/Jacobi/
DJacobi.h278 inline void MatrixBase<Derived>::applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>… in applyOnTheLeft() function
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h511 m_T.applyOnTheLeft(j-1, j, rot.adjoint()); in initialize()
DMatrixFunction.h232 T.applyOnTheLeft(k, k+1, rotation.adjoint()); in matrix_function_permute_schur()
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
DLevenbergMarquardt.h254 wa4.applyOnTheLeft(qrfac.householderQ().adjoint()); in minimizeOneStep()