Mathc initiation/Fichiers h : f 8
Aller à la navigation
Aller à la recherche
Dessiner la tangente au point x = 1.
Il suffit de calculer sa tangente et gnuplot peut l'afficher. Le calcul des équations se fera dans la deuxième partie du cours.
Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
set grid
plot [-4.000:4.000] [-6.000:6.000]\
3.0*x**2 - 2.0*x - 5.0 lt 7,\
4.0*x -8.0 lt 8
reset
# ---------------------
Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
set grid
plot [-7.000:7.000] [-2.000:2.000]\
cos(x) lt 7,\
-0.841471*x +1.3817730 lt 8
reset
# ---------------------
Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
set grid
plot [0.000:4.000] [0.000:2.500]\
sqrt(x) lt 7,\
0.408248*x +0.612372 lt 8
reset
# ---------------------