solvelin.spad line 1 [edit on github]
This package solves linear system in the matrix form AX = B
.
hasSolution?(A, B)
tests if the linear system AX = B
has a solution.
particularSolution(A, B)
finds a particular solution of the linear system AX = B
.
rank(A, B)
computes the rank of the complete matrix (A|B)
of the linear system AX = B
.
solve(A, LB)
finds a particular soln of the systems AX = B
and a basis of the associated homogeneous systems AX = 0
where B
varies in the list of column vectors LB
.
solve(A, B)
finds a particular solution of the system AX = B
and a basis of the associated homogeneous system AX = 0
.