1

私には2つの機能があります:

y = x - x^3両方を x = y^3 - y 1つの平面にプロットする必要があります.Mathematicaでこれをどのように達成するのだろうか?

ありがとう

4

1 に答える 1

1

1つの方法は、使用することです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"}
 ]

ここに画像の説明を入力

于 2012-11-15T19:50:06.377 に答える