Bachelor's degree final project  v1.0
Faculty of Mathematics, University of Barcelona
Defines | Functions
src/include/LU_matrix.h File Reference

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.

Detailed Description

LU method header file.

Author:
Joan Gimeno
Date:
19/01/2014 (start)
Version:
1.0

This file contains the header for ::LU