Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Eigenvalues/
DRealSchur.h241 void computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo);
242 …void initFrancisQRStep(Index il, Index iu, const Vector3s& shiftInfo, Index& im, Vector3s& firstHo…
330 Vector3s firstHouseholderVector(0,0,0), shiftInfo; in computeFromHessenberg()
331 computeShift(iu, iter, exshift, shiftInfo); in computeFromHessenberg()
336 initFrancisQRStep(il, iu, shiftInfo, im, firstHouseholderVector); in computeFromHessenberg()
418 …oid RealSchur<MatrixType>::computeShift(Index iu, Index iter, Scalar& exshift, Vector3s& shiftInfo) in computeShift() argument
422 shiftInfo.coeffRef(0) = m_matT.coeff(iu,iu); in computeShift()
423 shiftInfo.coeffRef(1) = m_matT.coeff(iu-1,iu-1); in computeShift()
424 shiftInfo.coeffRef(2) = m_matT.coeff(iu,iu-1) * m_matT.coeff(iu-1,iu); in computeShift()
429 exshift += shiftInfo.coeff(0); in computeShift()
[all …]