Previous Up Next

3.15.1  Courbe implicite en 2-d

On peut éventuellement rajouter encore deux paramètres pour spécifier le saut d’échantillonnage des variables avec xstep= et ystep=, c’est à dire le pas en x et en y que l’on choisi pour le graphe.
On tape :

plotimplicit(x^2+y^2-1,[x,y])

Ou on tape :

plotimplicit(x^2+y^2-1,x,y,unfactored)

On obtient :

Le dessin du cercle unité

On tape :

plotimplicit(x^2+y^2-1,x,y,xstep=0.2,ystep=0.3)

Ou on tape :

plotimplicit(x^2+y^2-1,[x,y],xstep=0.2,ystep=0.3)

Ou on tape :

plotimplicit(x^2+y^2-1,[x,y], xstep=0.2,ystep=0.3,unfactored)

On obtient :

Le dessin du cercle unité

On tape :

plotimplicit(x^2+y^2-1,x=-2..2,y=-2..2, xstep=0.2,ystep=0.3)

On obtient :

Le dessin du cercle unité

Previous Up Next