You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But this introduces a little bit of numerical error - 10 * (1/3) is less accurate than 10 / 3. We will need to re-implement NumberOperations.divide to get this to work correctly.
In particular, this will make the gauss-jordan equation solver more accurate.
The text was updated successfully, but these errors were encountered:
This is not technically a real matrix operation, but it is commonly needed, particularly for scaling. Right now, the approach commonly used is:
But this introduces a little bit of numerical error -
10 * (1/3)
is less accurate than10 / 3
. We will need to re-implement NumberOperations.divide to get this to work correctly.In particular, this will make the gauss-jordan equation solver more accurate.
The text was updated successfully, but these errors were encountered: