mathematica隐函数绘图的命令就是Implicitplot
Implicitplot[eqn, {x,xmin,xmax}] 用solve解方程eqn并画出隐函数图形
Implicitplot[eqn, {x,xmin,m1,m2,...,xmax}] 画方程eqn图形,不包含点mi
Implicitplot[eqn, {x,xmin,xmax},{y,ymin,ymax}] 用ContourPlot方法画隐函数图形
Implicitplot[{eqn1,eqn2,...},ranges,options] 画engi这一隐函数方程组的图形
例子
- Clear["Global`*"];
- << Graphics`ImplicitPlot`
- ImplicitPlot[(x^2 + y^2 - 1)^3 - x^2y^3 == 0, {x, -2,
- 2}, PlotStyle -> {{Hue[1]}, Thickness[.05]}]
复制代码 |