« Mathc gnuplot/Application : Méthode de Newton » : différence entre les versions

Contenu supprimé Contenu ajouté
Replacing Tangente12.gif with File:Tangente12.png (by CommonsDelinker because: Replacing GIF by exact PNG duplicate.).
DannyS712 (discussion | contributions)
m <source> -> <syntaxhighlight> (phab:T237267)
 
Ligne 17 :
{{Fichier|c01.c|largeur=70%|info=Calculer le point d'intersection entre g et h.|icon=Crystal Clear mimetype source c.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : c01.c */
Ligne 68 :
return 0;
}
</syntaxhighlight>
</source>
 
Le résultat.
Ligne 131 :
 
{{Fichier|x_ahfile.h|largeur=70%|info=Appel des fichiers|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : x_ahfile.h */
Ligne 147 :
#include "knewton.h"
#include "kg_gh.h"
</syntaxhighlight>
</source>
 
 
{{Fichier|f2.h|largeur=70%|info=La fonction à dessiner|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : f2.h */
Ligne 198 :
}
char Dfeq [] = "cos(x) + sin(x)";
</syntaxhighlight>
</source>
 
 
{{Fichier|knewton.h|largeur=70%|info=Méthode de Newton|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : knewton.h */
Ligne 226 :
return(x);
}
</syntaxhighlight>
</source>
 
 
{{Fichier|kg_gh.h|largeur=70%|info=Fonctions graphiques|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : kg_gh.h */
Ligne 279 :
fclose(fq);
}
</syntaxhighlight>
</source>