/external/eigen/doc/snippets/ |
MatrixBase_applyOnTheLeft.cpp | 6 A.applyOnTheLeft(B); 7 cout << "After applyOnTheLeft, A = " << endl << A << endl;
|
Jacobi_makeGivens.cpp | 5 v.applyOnTheLeft(0, 1, G.adjoint());
|
Jacobi_makeJacobi.cpp | 6 m.applyOnTheLeft(0, 1, J.adjoint());
|
/external/eigen/Eigen/src/Eigenvalues/ |
RealQZ.h | 228 m_S.applyOnTheLeft(m_Q.adjoint()); 241 m_S.rightCols(dim-j-1).applyOnTheLeft(i-1,i,G.adjoint()); 242 m_T.rightCols(dim-i+1).applyOnTheLeft(i-1,i,G.adjoint()); 256 m_Z.applyOnTheLeft(i,i-1,G.adjoint()); 336 m_S.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); 337 m_T.rightCols(dim-i).applyOnTheLeft(i,i+1,G.adjoint()); 347 m_Z.applyOnTheLeft(i+1,i,G.adjoint()); 370 m_S.rightCols(dim-firstColS).applyOnTheLeft(zz,zz+1,G.adjoint()); 371 m_T.rightCols(dim-zz).applyOnTheLeft(zz,zz+1,G.adjoint()); 385 m_Z.applyOnTheLeft(zz,zz-1,G.adjoint()) [all...] |
ComplexSchur.h | 431 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());
|
RealSchur.h | 384 m_matT.rightCols(size-iu+1).applyOnTheLeft(iu-1, iu, rot.adjoint());
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
GMRES.h | 133 v.applyOnTheLeft(i, i + 1, G[i].adjoint()); 142 v.applyOnTheLeft(k - 1, k, G[k - 1].adjoint()); 143 w.applyOnTheLeft(k - 1, k, G[k - 1].adjoint());
|
DGMRES.h | 346 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/test/ |
jacobi.cpp | 42 b.applyOnTheLeft(p, q, rot);
|
/external/eigen/Eigen/src/Core/ |
MatrixBase.h | 185 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)
|
/external/eigen/Eigen/src/Geometry/ |
RotationBase.h | 83 res.linear().applyOnTheLeft(l);
|
/external/eigen/Eigen/src/QR/ |
HouseholderQR.h | 332 c.applyOnTheLeft(householderSequence(
|
ColPivHouseholderQR.h | 539 c.applyOnTheLeft(householderSequence(dec().matrixQR(), dec().hCoeffs())
|
/external/eigen/Eigen/src/SVD/ |
JacobiSVD.h | 396 work_matrix.applyOnTheLeft(p,q,rot); 440 m.applyOnTheLeft(0,1,rot1); [all...] |
/external/eigen/unsupported/Eigen/src/SVD/ |
JacobiSVD.h | 391 work_matrix.applyOnTheLeft(p,q,rot); 432 m.applyOnTheLeft(0,1,rot1); 692 m_workMatrix.applyOnTheLeft(p,q,j_left);
|
/external/eigen/Eigen/src/Jacobi/ |
Jacobi.h | 29 * v.applyOnTheLeft(J.adjoint()); 32 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() 80 * \sa MatrixBase::makeJacobi(const MatrixBase<Derived>&, Index, Index), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() 122 * \sa JacobiRotation::makeJacobi(RealScalar, Scalar, RealScalar), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() 145 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() 262 * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() 277 inline void MatrixBase<Derived>::applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>& j) 288 * \sa class JacobiRotation, MatrixBase::applyOnTheLeft(), internal::apply_rotation_in_the_plane()
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixFunction.h | 355 m_T.applyOnTheLeft(index, index+1, rotation.adjoint());
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
LevenbergMarquardt.h | 247 wa4.applyOnTheLeft(qrfac.householderQ().adjoint());
|