« Mathc initiation/Fichiers h : f 8 » : différence entre les versions

Un livre de Wikilivres.
Contenu supprimé Contenu ajouté
modification mineur
modification mineur
Ligne 1 : Ligne 1 :
[[Catégorie:Mathc initiation (livre)]]
[[Catégorie:Mathc initiation (livre)]]
:
:
[[Mathc initiation/a06| Sommaire]]
[[Mathc initiation/a11| Sommaire]]
:
:



Version du 11 mai 2022 à 23:33

Sommaire

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
# ---------------------