Projet

Général

Profil

« Précédent | Suivant » 

Révision 551

Ajouté par Louis JACQUET il y a presque 3 ans

Ajout procedure Add

Voir les différences:

branch/JACQUET/sp4a3/sp4a3_kalman.c
void Add_Mat_Mat(int na,int ma,double A[na][ma],int nb,int mb,double B[nb][mb], double R[na][ma]){
int i,j;
for(i=0;i<na;i++) {
for(j=0;j<ma;j++) { //Ces deux boucles conditionnelles for, balayent la matrice
R[i][j] = A[i][j]+B[i][j]; //Simple addition termes a termes des matrices A et B
}
}
}
void Inverse_Mat_22(int n,int m,double A[n][m],double B[n][m]){

Formats disponibles : Unified diff