-
Make the Application find the Solution of System of Linear Equation up to 9 Variable at a time. Using Gauss Jordan or Gauss Elimination.
-
`A.solve(b)` currently does `A.inv() * b` which is really slow when `b` has only 1 column
-
This matrice has an inverse:
```
[-0.34727043, 0.00000005397217, -0.000000000000003822135, -0.000000000000003821371]
[0, -0.000000026986084, -1.0001999, -1…
-
The current [try_inverse()](https://github.com/sebcrozet/nalgebra/blob/1471031ac45e8b69558259a44726087a3383e511/src/core/inverse.rs#L57) implementation for 2x2 and 3x3 matrices attempts to use an appr…
-
Somehow I get different results using the inverse of matrices with python and with math.js
Original matrix:
```
A =
6.123233995736766e-17 1 0 788
-1 6.123233995736766e-17 0 692
0 0 1 0 …
-
Hi All,
With reference to "https://github.com/gpufit/Gpufit/issues/46" I've implemented a model with many parameters (more than 32) and I'm trying to implement a "vector function" to be fit, plus the…
-
These modules have exactly the same secrets and services in sections 6.3.1 and 6.3.2. You should make the secrets and services more specific here such that they are not the same.
-
Again a similar comment but I think this one is easy to fix since you have the pseudo code written. A, B and X don't correspond to a function that can be accessed outside of their respective modules, …
-
Issue to track non-trivial content improvements to 1-E; will add one comment with discovered issues after each class day.
-
There is currently no support for in asciimath for rendering an augmented matrix. This would be useful for showing something like Gauss-Jordan elimination.