« Mathc gnuplot/Application : Tangente de P à l'axes des 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=Calculer la longeur de P(c,f(c) à l'axe de y.|icon=Crystal Clear mimetype source c.png}}
<sourcesyntaxhighlight lang="c">
/* ------------------------------------ */
/* Save as : c01.c */
Ligne 56 :
return 0;
}
</syntaxhighlight>
</source>
 
Le résultat.
Ligne 88 :
 
{{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 103 :
#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 124 :
}
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 164 :
(*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 200 :
fclose(fp);
}
</syntaxhighlight>
</source>