mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
give FullPivotingHouseholderQR all the modern comfort
This commit is contained in:
@@ -77,7 +77,7 @@ void MatrixBase<Derived>::makeHouseholder(
|
||||
RealScalar tailSqNorm = size()==1 ? 0 : tail.squaredNorm();
|
||||
Scalar c0 = coeff(0);
|
||||
|
||||
if( tailSqNorm == RealScalar(0) && ei_imag(c0)==RealScalar(0))
|
||||
if(tailSqNorm == RealScalar(0) && ei_imag(c0)==RealScalar(0))
|
||||
{
|
||||
*tau = 0;
|
||||
*beta = ei_real(c0);
|
||||
|
||||
Reference in New Issue
Block a user