-
-
Notifications
You must be signed in to change notification settings - Fork 486
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's a potential bug with the Mat4 inverse code. #1432
Comments
So this is basically the same as the method taught in school for manual solving of matrices. Should we be using something like QR decomposition with Givens rotations instead which is much more stable under numerical issues that show up from poorly conditioned matrices? Such as Matlab does when you use the solve command? https://en.wikipedia.org/wiki/QR_decomposition https://en.wikipedia.org/wiki/Gaussian_elimination#Gauss%E2%80%93Jordan_elimination I think is close to what is currently being used. Another benefit would be that Givens rotations are row-independent and therefor can be parallelized easily. |
although LU factorization is faster, so maybe should be used instead of QR. https://search.brave.com/search?q=how+does+lapack+invert+matrix&source=desktop or maybe it is up to the user to use a numerically strong method if they need one. |
@vextorspace Looking at the code, for matrices bigger than 4x4 LU decomposition is already used. I personally think the try_inverse method should not return Some if the result contains non finite values but the documentation does not currently specify the desired behavior. I created a PR and set up some tests and benchmarks. Doing a NaN / Inf check came with a 30% performance penalty on my machine, using LU decomposition for 4x4 matrices turned out to be 50x slower so i don't think this would be wise. I'd hazard a guess that this problem also affects 2x2 and 3x3 matrix inversions. |
Specifically here.
A determinant close to 0 would still cause numerical issues that can result in NAN's.
I found out the hard way with his snippet:
And this input matrix:
Using a heuristic, the determinant of this matrix is about
8.26×10 −38
Which is essentially 0, however since it is not identically 0, the linked code proceeds to compute multiple divisions which yield NAN's and infs, so the resulting matrix is useless.On it's current form the method is problematic, as a user would expect that if
try_inverse
succeeds, then the result is sane.Possible fixes:
debug_assert
that crashes the application if any entires are Nans but does not add overhead for release builds.The text was updated successfully, but these errors were encountered: