« Introduction au langage C/Matrices complexes 3 » : différence entre les versions

Contenu supprimé Contenu ajouté
m Robot : Remplacement de texte automatisé (-\n(==={0,3})(?: *)([^\n=]+)(?: *)\1(?: *)\n +\n\1 \2 \1\n)
m Robot : remplacement de texte automatisé (-(<|</)source([ \t>]) +\1syntaxhighlight\2)
Ligne 46 :
* À ajouter dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Imprimer une matrice dans un fichier */
Ligne 89 :
return(A);
}
</syntaxhighlight>
</source>
 
=== Appel de la fonction ===
Ligne 95 :
* Remplace la fonction main() dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
int main(void)
Ligne 120 :
return 0;
}
</syntaxhighlight>
</source>
 
Dans le fichier :
Ligne 181 :
* À ajouter dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
double **p_mZ(
Ligne 219 :
return(A);
}
</syntaxhighlight>
</source>
 
 
Ligne 226 :
* Remplace la fonction main() dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
int main(void)
Ligne 243 :
return 0;
}
</syntaxhighlight>
</source>
 
 
Ligne 263 :
* À ajouter dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
double **c_a_A_mZ(
Ligne 281 :
return(A);
}
</syntaxhighlight>
</source>
 
 
Ligne 288 :
* Remplace la fonction main() dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
int main(void)
Ligne 307 :
return 0;
}
</syntaxhighlight>
</source>
 
 
Ligne 318 :
* À ajouter dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
double **m_0_mZ(
Ligne 336 :
return(Zer);
}
</syntaxhighlight>
</source>
 
 
Ligne 343 :
* Remplace la fonction main() dans le fichier de la [[Introduction_au_langage_C/Matrices_complexes_2|librairie]].
 
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
int main(void)
Ligne 357 :
return 0;
}
</syntaxhighlight>
</source>