Mathc initiation/Fichiers g : g02c

Sommaire


Nous dessinons la fonction tan(x) + a, avec a = 10 (lt 8 en noire). En modifiant la valeur de a, on peut déplacer la fonction verticalement.


Dessinons la fonction tangente. sin(x)/cos(x)


Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
plot [-pi/2.:pi/2.] [-35:35]\
   tan(x) + 10 lt 8
reset
# ---------------------



Les mêmes exemples avec la fonction cotangente. cos(x)/sin(x)


Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
plot [0.:pi] [-35:35]\
   1/tan(x)  + 10 lt 8
reset
# ---------------------