LUDecomposition DΒΆ
jet.spad line 6222 [edit on github]
D: Field
LUDecomposition contains procedures to solve linear systems of equations or to compute inverses using a LU decomposition.
- LUDecomp: Matrix D -> Record(LU: Matrix D, Perm: Vector Integer, Pivots: List D)
LUDecomp(A)
computes a LU decomposition ofA
using the algorithm of Crout.LU
contains both triangular matrices;Perm
is the permutation used for partial pivoting andPivots
yields the used pivots.