Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.0 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Sparse Matrix > Sparse Decompositions > lusolve

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

non_zeros=[1,2,3,4];rows_cols=[1,1;2,2;3,3;4,4];
sp=sparse(rows_cols,non_zeros);
[h,rk]=lufact(sp);x=lusolve(h,[1;1;1;1]);ludel(h)
rk,sp*x

non_zeros=[1,2,3,4];rows_cols=[1,1;2,2;3,3;4,4];
sp=sparse(rows_cols,non_zeros);
x=lusolve(sp,-ones(4,1));
sp*x

See Also

  • sparse — sparse matrix definition
  • lufact — sparse lu factorization
  • slash — (/) right division and feed back
  • backslash — (\) left matrix division.
Report an issue
<< luget Sparse Decompositions spchol >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Oct 01 17:34:51 CEST 2012