-
Notifications
You must be signed in to change notification settings - Fork 54
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
Inversion #9
Comments
I've also noticed a great change in structure after multiplication. |
Hi,
Quote from wiki: |
@bachp2 Seeing the same issue and was driving me crazy. Thanks for pointing out the explanation. |
Maybe once I've recuperated, I can look into adding an LU inverse implementation. https://en.wikipedia.org/wiki/LU_decomposition#C#_code_examples |
Solved my problem, too. Thank you. |
for i,j in matrix.ipairs(K) do K[i][j]=tonumber(string.format("%.4f", K[i][j])) end |
The inverse of the matrix doesn't appear to be very accurate.
I've noticed that whenever I try to invert a matrix it randomly adds decimals
The text was updated successfully, but these errors were encountered: