![]() |
Fast Auxiliary Space Preconditioning 2.7.7 Aug/28/2022
|
LU decomposition and direct solver for small dense matrices. More...
Go to the source code of this file.
Functions | |
SHORT | fasp_smat_lu_decomp (REAL *A, INT pivot[], const INT n) |
LU decomposition of A using Doolittle's method. More... | |
SHORT | fasp_smat_lu_solve (const REAL *A, REAL b[], const INT pivot[], REAL x[], const INT n) |
Solving Ax=b using LU decomposition. More... | |
LU decomposition and direct solver for small dense matrices.
Copyright (C) 2009–Present by the FASP team. All rights reserved.
Definition in file BlaSmallMatLU.c.
LU decomposition of A using Doolittle's method.
A | Pointer to the full matrix |
pivot | Pivoting positions |
n | Size of matrix A |
Definition at line 52 of file BlaSmallMatLU.c.
Solving Ax=b using LU decomposition.
A | Pointer to the full matrix |
b | Right hand side array (b is used as the working array!!!) |
pivot | Pivoting positions |
x | Pointer to the solution array |
n | Size of matrix A |
Definition at line 124 of file BlaSmallMatLU.c.