mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Big renaming:
start ---> head end ---> tail Much frustration with sed syntax. Need to learn perl some day.
This commit is contained in:
@@ -620,7 +620,7 @@ void EigenSolver<MatrixType>::hqr2(MatrixType& matH)
|
||||
// Overflow control
|
||||
t = ei_abs(matH.coeff(i,n));
|
||||
if ((eps * t) * t > 1)
|
||||
matH.col(n).end(nn-i) /= t;
|
||||
matH.col(n).tail(nn-i) /= t;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -708,7 +708,7 @@ void EigenSolver<MatrixType>::hqr2(MatrixType& matH)
|
||||
// in this algo low==0 and high==nn-1 !!
|
||||
if (i < low || i > high)
|
||||
{
|
||||
m_eivec.row(i).end(nn-i) = matH.row(i).end(nn-i);
|
||||
m_eivec.row(i).tail(nn-i) = matH.row(i).tail(nn-i);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user