1

我有两个功能:

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

谢谢

4

1 回答 1

1

一种方法是使用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"}
 ]

在此处输入图像描述

于 2012-11-15T19:50:06.377 回答