« Mathc gnuplot/Animer un point » : différence entre les versions

Contenu supprimé Contenu ajouté
m Pas de titre 1 dans les pages, pour la version imprimable avec AWB
DannyS712 (discussion | contributions)
m <source> -> <syntaxhighlight> (phab:T237267)
 
Ligne 18 :
 
{{Fichier|c01.c|largeur=70%|info=Créer une liste de commande|icon=Crystal Clear mimetype source c.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : c01.c */
Ligne 37 :
return 0;
}
</syntaxhighlight>
</source>
 
Le résultat.
 
<sourcesyntaxhighlight lang="gnuplot">
# Gnuplot file : load "a_main.plt"
 
Ligne 64 :
-0.5*x**2 + 1.0*x + 8.0 lt 13,\
"a_paaf" pt 7 ps 3
</syntaxhighlight>
</source>
 
 
Ligne 71 :
 
{{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 86 :
/* ------------------------------------ */
#include "kg_f.h"
</syntaxhighlight>
</source>
 
 
{{Fichier|f.h|largeur=70%|info=La fonction à dessiner|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : f.h */
Ligne 100 :
}
char feq[] = "-0.5*x**2 + 1.0*x + 8.0";
</syntaxhighlight>
</source>
 
 
{{Fichier|kg_f.h|largeur=70%|info=La fonction graphique|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : kg_f.h */
Ligne 139 :
fclose(fp1);
}
</syntaxhighlight>
</source>