Correct Schur decomposition for 2x2 matrices

Due to rounding and possible loss of precision the lower left element of the 2x2 matrix
may be different from zero.
This commit is contained in:
daingun 2019-11-01 22:12:59 +01:00 committed by GitHub
parent 286a37364e
commit c550921bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -413,6 +413,7 @@ where
let inv_rot = rot.inverse();
inv_rot.rotate(&mut m);
rot.rotate_rows(&mut m);
m[(1, 0)] = N::zero();
if compute_q {
// XXX: we have to build the matrix manually because