![]() |
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 | ||
| ) |
| int Doolittle_LU_Solve | ( | float * | LU, |
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) |
Definition at line 219 of file module.c.
References Unit_Lower_Triangular_Solve(), and Upper_Triangular_Solve().
Referenced by fun(), and invertMatrix().


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

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


| void Unit_Lower_Triangular_Solve | ( | float * | L, |
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) |
Definition at line 86 of file module.c.
References k.
Referenced by Doolittle_LU_Solve().

| int Upper_Triangular_Solve | ( | float * | U, |
| float | B[], | ||
| float | x[], | ||
| int | n | ||
| ) |
Definition at line 36 of file module.c.
References k.
Referenced by Doolittle_LU_Solve().

1.8.13