« Mathc gnuplot/Animer deux points » : 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 16 :
 
{{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 35 :
return 0;
}
</syntaxhighlight>
</source>
 
Le résultat.
 
<sourcesyntaxhighlight lang="gnuplot">
# Gnuplot file : load "a_main.plt"
 
Ligne 61 :
-0.5*x**2 + 1.0*x + 8.0 lt 13,\
"a_paae" pt 7 ps 3
</syntaxhighlight>
</source>
 
 
Ligne 68 :
 
{{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 83 :
/* ------------------------------------ */
#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 97 :
}
char feq[] = "-0.5*x**2 + 1.0*x + 8.0";
</syntaxhighlight>
</source>
 
 
{{Fichier|xg_f.h|largeur=70%|info=La fonction graphique|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : xg_f.h */
Ligne 137 :
fclose(fp1);
}
</syntaxhighlight>
</source>