我有两个功能:
y = x - x^3
我需要将它们都绘制在一个平面上,
x = y^3 - y
我想知道如何用 Mathematica 实现这一点?
谢谢
我有两个功能:
y = x - x^3
我需要将它们都绘制在一个平面上,
x = y^3 - y
我想知道如何用 Mathematica 实现这一点?
谢谢
一种方法是使用ContourPlot
让我们将它包裹在 Manipulate 中以使其更易于调整
Manipulate[
With[{f1 = y == x - x^3, f2 = x == y^3 - y},
ContourPlot[{f1, f2}, {x, -lim, lim}, {y, -lim, lim},
Frame -> True,
FrameLabel -> {{y, None}, {x, {f1, f2}}},
ImagePadding -> 30,
GridLines -> Automatic,
GridLinesStyle -> Directive[Thickness[.001], LightGray]]
],
{{lim, 3, "limit"}, .1, 10, .1, Appearance -> "Labeled"}
]