Scilab 6.0.0
Scilab Help >> Sparse Matrix > Sparse Decompositions > lusolve
lusolve
sparse linear system solver
Syntax
x=lusolve(hand,b) x=lusolve(A,b)
Arguments
- b
full real matrix
- A
real square sparse invertible matrix
- hand
handle to a previously computed sparse lu factors (output of lufact)
- x
full real matrix
Description
x=lusolve(hand,b)
solves the sparse linear system
A*x = b
.
[hand,rk]=lufact(A)
is the output of lufact.
x=lusolve(A,b)
solves the sparse linear system
A*x = b
Comments
Add a comment:
Please login to comment this page.