diff --git a/matrices_intro.md b/matrices_intro.md index fdba88208ea87d9feae1c56880b8efc1441f301e..496cca33d41ee16e54ea07ee4420634b28c52fa5 100644 --- a/matrices_intro.md +++ b/matrices_intro.md @@ -46,7 +46,7 @@ Pour manipuler des matrices, vous devrez implémenter les fonctions suivantes ```C void matrix_destroy(matrix *mat); ``` -* allocation d'une matrice, et initialisation de ses valeurs à partir d'un tableau de taille `m` et `n` +* allocation d'une matrice de taille $m\times n$, et initialisation de ses valeurs à partir d'un tableau de taille `m * n` ```C matrix matrix_create_from_array(int m, int n, double data[]);