#ifndef MATRICE_H #define MATRICE_H struct matrice { int n; int m; double *valeurs; }; typedef struct matrice matrice; void matrice_somme(matrice *r, matrice a, matrice b); void matrice_produit(matrice *r, matrice a, matrice b); void matrice_identite(matrice *m_id); void matrice_nulle(matrice *m_nulle); void matrice_modifier(matrice *m, int i, int j, double nouvelle_valeur); double matrice_maximum(matrice m, int * pi, int * pj); void matrice_afficher(matrice m); #endif