Wolfram mathematica 如何用Mathematica在一个平面上绘制x函数和y函数?

Wolfram mathematica 如何用Mathematica在一个平面上绘制x函数和y函数?,wolfram-mathematica,Wolfram Mathematica,我有两个职能: y=x-x^3和 x=y^3-y 我需要在一个平面上绘制它们,我想知道如何用Mathematica实现这一点 谢谢一种方法是使用ContourPlot 让我们将其包装在操纵中,以使其更易于调整 Manipulate[ With[{f1 = y == x - x^3, f2 = x == y^3 - y}, ContourPlot[{f1, f2}, {x, -lim, lim}, {y, -lim, lim}, Frame -> True, Frame

我有两个职能:

y=x-x^3
x=y^3-y
我需要在一个平面上绘制它们,我想知道如何用Mathematica实现这一点


谢谢

一种方法是使用
ContourPlot

让我们将其包装在操纵中,以使其更易于调整

 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"}
 ]

一种方法是使用
ContourPlot

让我们将其包装在操纵中,以使其更易于调整

 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"}
 ]

你试过什么?如果你展示你迄今为止所做的事情,人们的反应会更好。你尝试过什么?如果你展示你迄今为止所做的,人们的反应会更好。