UCFD_SPARSE  v1.0
Documentation
Loading...
Searching...
No Matches
inverse.h
Go to the documentation of this file.
1#ifndef INVERSE_H
2#define INVERSE_H
3
14void ludcmp(int n, double *A);
15
22void lusubst(int n, double *LU, double *b);
23
24
25#endif //INVERSE_H
void lusubst(int n, double *LU, double *b)
Forward/Backward Substitution function.
Definition: inverse.c:73
void ludcmp(int n, double *A)
LU Decomposition function.
Definition: inverse.c:34