Projet

Général

Profil

« Précédent | Suivant » 

Révision 513

implantation fonction transpose

Voir les différences:

branch/MARIMOUTOU_Mourougen/spa3/sp4a3_kalman.c
void Transpose_Mat(int n,int m,double A[n][m],double R[m][n]){
int i,j;
for (i=0;i<n;i++)
for (j=0;j<m;j++)
R[j][i]=A[i][j];
for (i=0;i<n;i++)
{
for (j=0;j<m;j++)
{
R[j][i]=A[i][j];
}
}
}
void Sub_Mat_Mat(int na,int ma,double A[na][ma],int nb,int mb,double B[nb][mb], double R[na][ma]){

Formats disponibles : Unified diff