![]()  | 
  
    PandA-2024.02
    
   | 
 
Go to the source code of this file.
Functions | |
| int | Upper_Triangular_Solve (float *U, float B[], float x[], int n) | 
| void | Unit_Lower_Triangular_Solve (float *L, float B[], float x[], int n) | 
| int | Doolittle_LU_Decomposition (float *A, int n) | 
| int | Doolittle_LU_Solve (float *LU, float B[], float x[], int n) | 
| int | invertMatrix (float *LU, float *invA, float *I) | 
| int | fun (float *A, float *invA, float *b, float *x, float *I) | 
| int Doolittle_LU_Decomposition | ( | float * | A, | 
| int | n | ||
| ) | 
Definition at line 153 of file LUdecomposition.c.
References k.
| int Doolittle_LU_Solve | ( | float * | LU, | 
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) | 
Definition at line 219 of file LUdecomposition.c.
References Unit_Lower_Triangular_Solve(), and Upper_Triangular_Solve().

| int fun | ( | float * | A, | 
| float * | invA, | ||
| float * | b, | ||
| float * | x, | ||
| float * | I | ||
| ) | 
Definition at line 254 of file LUdecomposition.c.
References Doolittle_LU_Decomposition(), Doolittle_LU_Solve(), and invertMatrix().

| int invertMatrix | ( | float * | LU, | 
| float * | invA, | ||
| float * | I | ||
| ) | 
Definition at line 233 of file LUdecomposition.c.
References Doolittle_LU_Solve().

| void Unit_Lower_Triangular_Solve | ( | float * | L, | 
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) | 
Definition at line 86 of file LUdecomposition.c.
References k.
| int Upper_Triangular_Solve | ( | float * | U, | 
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) | 
Definition at line 36 of file LUdecomposition.c.
References k.
 1.8.13