solvelin.spad line 91 [edit on github]
This package solves linear system in the matrix form AX = B
. It is essentially a particular instantiation of the package LinearSystemMatrixPackage for Matrix and Vector. This package's
existence makes it easier to use solve in the FriCAS interpreter.
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, 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
.
solve(A, B)
finds a particular solution of the system AX = B
and a basis of the associated homogeneous system AX = 0
.