|
> 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; > implicitplot(sin(x)^2 + cos(y)^2 = 1, xrange, yrange); ![]() > eq1 := x^2 - cos(y)^2 = 1; eq2 := y = x + sin(x*y); > xrange := x = -Pi..Pi; yrange := y = -Pi..Pi; > implicitplot({eq1,eq2}, xrange, yrange); ![]() |