Implicitplot

implicitplot(expr, xrange, yrange, options);

Permet de tracer le graphe de fonctions implicites en 2 dimensions.

expr peut-être sous la forme d'une équation ou d'une expression contenant les deux variables x et y. Dans le deuxième cas, Maple V tracera la courbe expr = 0.

xrange est de la forme x = xi..xsxi et xs sont des valeurs numériques.

yrange est de la forme y = yi..ysyi et ys sont des valeurs numériques.

options est de la forme option = valeur. Celles disponibles sont accessibles (pour l'instant) en utilisant la commande:

> ?plot[options]

Exemple

> with(plots);
[animate, animate3d, conformal, contourplot, cylinderplot, densityplot, display, display3d, fieldplot, fieldplot3d, gradplot, gradplot3d, implicitplot, implicitplot3d, loglogplot, logplot, matrixplot, odeplot, pointplot, polarplot, polygonplot, polygonplot3d, polyhedraplot, replot, setoptions, setoptions3d, spacecurve, sparsematrixplot, sphereplot, surfdata, textplot, textplot3d, tubeplot]

> xrange := x = -10..10; yrange := y = -10..10;
xrange := x = -10..10
yrange := y = -10..10

> implicitplot(sin(x)^2 + cos(y)^2 = 1, xrange, yrange);

Implicitplot2d1

> eq1 := x^2 - cos(y)^2 = 1; eq2 := y = x + sin(x*y);
eq1 := x^2 - cos(y)^2 = 1
eq2 := y = x + sin(x*y)

> xrange := x = -Pi..Pi; yrange := y = -Pi..Pi;
xrange := x = -Pi..Pi
yrange := y = -Pi..Pi

> implicitplot({eq1,eq2}, xrange, yrange);

Implicitplot2d2