Mathc initiation/Fichiers c : c13a
Apparence
Nous pouvons voir que au temps zéro, x = 0 et x**2 = 0.
Dessinons la fonction x**2.
Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
plot [-5.:5.] [-25:25]\
x**2 lt 8
reset
# ---------------------
Nous pouvons voir que au temps zéro, x = 0 et x**3 = 0.
Dessinons la fonction x**3
Fichier de commande gnuplot :
# ---------------------
# Copy and past this file into the screen of gnuplot
#
#
set zeroaxis lt 3 lw 1
plot [-3.:3.] [-27:27]\
x**3 lt 8
reset
# ---------------------