« Mathc gnuplot/Application : Tangente et axes x-y » : 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 17 :
 
{{Fichier|c01.c|largeur=70%|info=Dessiner les points d'intersection de la tangente avec les axes x/y|icon=Crystal Clear mimetype source c.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : c01.c */
Ligne 60 :
return 0;
}
</syntaxhighlight>
</source>
 
Le résultat.
Ligne 93 :
 
{{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 108 :
#include "kg_tan.h"
#include "k_tan.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 129 :
}
char Dfeq[] = " (-sin(x)) ";
</syntaxhighlight>
</source>
 
 
{{Fichier|k_tan.h|largeur=70%|info=Equation de la tangente|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : k_tan.h */
Ligne 169 :
(*PDf)(c), (*P_f)(c) - (*PDf)(c)*c );
}
</syntaxhighlight>
</source>
 
 
{{Fichier|kg_tan.h|largeur=70%|info=La fonction graphique|icon=Crystal Clear mimetype source h.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : kg_tan.h */
Ligne 217 :
fclose(fp);
}
</syntaxhighlight>
</source>