Wolfram Language Fast Introduction for Math Students
Démarrer »

Tracés en 3D

Plot3D tracera une courbe cartésienne ou une surface :

In[1]:=
Click for copyable input
Plot3D[x^2 - y^2 , {x, -3, 3}, {y, -3, 3}]
Out[1]=

Utilise ParametricPlot3D pour tracer une courbe d'espace 3D :

In[2]:=
Click for copyable input
ParametricPlot3D[{Sin[u], Cos[u], u/10}, {u, 0, 20}]
Out[2]=

Pour tracer en coordonnées sphériques, utilise SphericalPlot3 :

In[3]:=
Click for copyable input
SphericalPlot3D[Sin[\[Theta]], {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}]
Out[3]=

RevolutionPlot3D construit la surface formée en faisant tourner une expression autour de l'axe :

In[1]:=
Click for copyable input
RevolutionPlot3D[x^4 - x^2, {x, -1, 1}]
Out[1]=

RÉFÉRENCE RAPIDE : Visualisation des fonctions »