00001 00005 #ifndef RESOLLU_H 00006 #define RESOLLU_H 00007 00009 #define MAT_SIZE 200 00010 00017 bool ludcmp(double a[][MAT_SIZE], int l, int indx[]) ; 00018 00025 void lubksb(double a[][MAT_SIZE],int l,int indx[],double b[]) ; 00026 00042 bool ResoudreSysteme(double K[][MAT_SIZE], double U[], double B[], int Dimension) ; 00043 00044 00045 00046 00047 #endif