Scilab 5.3.3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
lusolve
sparse linear system solver
Calling Sequence
lusolve(hand,b) 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)
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
Examples
See Also
<< luget | Sparse Matrix | mtlb_sparse >> |