![]() |
Bachelor's degree final project
v1.0
Faculty of Mathematics, University of Barcelona
|
LU method header file. More...
#include "permutation.h"
Include dependency graph for LU_matrix.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Defines | |
| #define | WHITOUT_PIVOTING |
| LU decomposition without any pivoting. | |
| #define | PARTIAL_PIVOTING_ROW |
| Partial pivoting by rows in LU decomposition. | |
| #define | PARTIAL_PIVOTING_COL |
| Partial pivoting by columns in LU decomposition. | |
| #define | FULL_PIVOTING |
| Complete pivoting by rows and columns in LU decomposition. | |
Functions | |
| void * | lu (size_t m, size_t n, double **const A, double **const LU, size_t *const pr, size_t *const pc, double tol) |
| Compute the LU factorization of a matrix n-by-n. | |
LU method header file.
This file contains the header for ::LU
1.7.6.1