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
At the moment Gaussian elimination supports only mutable arrays (because it calls rref). Would be nice to support also static arrays, probably the static matrix should be converted to mutable to use rref.
Minimum working example
A =@SMatrix [2..4-1..2;-2..12..4]
b =@SVector [-2..2, -2..2]
solve(A, b, GaussianElimination)
Additional information
The text was updated successfully, but these errors were encountered:
Feature description
At the moment Gaussian elimination supports only mutable arrays (because it calls rref). Would be nice to support also static arrays, probably the static matrix should be converted to mutable to use rref.
Minimum working example
Additional information
The text was updated successfully, but these errors were encountered: