回答
ContourPlot[x^3 + y^3 == 6*x*y, {x, -2.7, 5.7}, {y, -7.5, 5}]
兩點意見:
- 注意雙等號和乘法符號。
- 您可以通過WolframAlpha界面找到這個確切的輸入。這個界面更加寬容,幾乎可以接受你的輸入 - 雖然我確實需要指定我想要某種類型的繪圖。
適用於Wolfram | Alpha的好用。 – 2012-01-12 04:04:13
謝謝你..但我並不是指只繪圖..我想處理它..喜歡分化和東西..我可以隱式區分這個方程嗎? – 2012-01-13 10:07:57
我猜這就是你需要:
http://reference.wolfram.com/mathematica/Compatibility/tutorial/Graphics/ImplicitPlot.html
ContourPlot[x^3 + y^3 == 6 x*y, {x, -10, 10}, {y, -10, 10}]
是,使用ContourPlot
。
而且它甚至有可能沿着自身的曲線繪製文本x^3 + y^3 = 6xy
,通過更換Line
原始幾個Text
原語:
ContourPlot[x^3 + y^3 == 6 x y, {x, -4, 4}, {y, -4, 4},
Background -> Black, PlotPoints -> 7, MaxRecursion -> 1, ImageSize -> 500] /.
{
Line[s_] :>
Map[
Text[Style["x^3+y^3 = 6xy", 16, Hue[RandomReal[]]], #, {0, 0}, {1, 1}] &,
s]
}
或者您可以沿曲線動畫的公式,像這樣:
res = Table[ Normal[
ContourPlot[x^3 + y^3 == 6 x y, {x, -4, 4}, {y, -4, 4},
Background -> Black,
ImageSize -> 600]] /.
{Line[s_] :> {Line[s],
Text[Style["x^3+y^3 = 6xy", 16, Red], s[[k]], {0, 0},
s[[k + 1]] - s[[k]]]}},
{k, 1, 448, 3}];
ListAnimate[res]
一個人不可能爲這個答案投票:一個人怎麼可能抵制沿軌道運行的「方程式」? – murray 2012-01-12 04:28:07
+1。你真的很專業。 – 2014-09-20 03:33:23
- 1. 使用函數式編程在mathematica中模擬排列函數
- 2. 在mathematica中使用複數函數6
- 3. 在Mathematica中使用等式約束的函數最小化8
- 4. 在Mathematica中使用「CreateDocument」函數而不會丟失格式
- 5. 如何在Matlab中調用Mathematica函數?
- 6. 在Mathematica中從隱式方程中分離偏導數
- 7. Mathematica Manipulate函數
- 8. NMheimize Mathematica函數
- 9. 如何在Mathematica中使用沿函數參數值的單位
- 10. mathematica中的函數迭代
- 11. Mathematica中的NSolve函數
- 12. 在scala中使用我的函數 - 在函數上應用隱式轉換
- 13. 在Mathematica中使用Manipulate函數來將函數擬合到數據
- 14. Mathematica:函數文檔
- 15. Mathematica:將函數應用到列表中
- 16. 在Mathematica中繪製階梯函數
- 17. 在Mathematica中重複n次函數
- 18. 在mathematica中繪製sigmoid函數
- 19. 在mathematica中matlab subs()的等價函數
- 20. 在mathematica包中定義私有函數
- 21. 在Mathematica中作爲PDF插值函數
- 22. 在mathematica中編寫兩個函數
- 23. 如何在「Cases」Mathematica函數中使用「>」和「<」?
- 24. 在Mathematica中使用MaxValue []函數定義一個區域
- 25. 在mathematica矩陣圖中使用2種顏色函數
- 26. 如何隱式使用函數?
- 27. 隱式函數__strcpy_chk()調用
- 28. C++隱式函數調用
- 29. 在Mathematica中使用MySQL數據庫
- 30. 使用Mathematica Manipulate函數繪製傳遞函數
爲什麼有人編輯在原始問題或任何答案中根本不添加「z」? – agentp 2013-02-14 18:16:45
這不是一個函數,它是三個笛卡爾座標* x *,* y *和* z *中的*方程*。然而,等式的左邊可以被認爲給出了從\ R^3到\ R的映射(函數)的'規則'。然後等式給出這個標量場(地圖,函數)的特定水平集,它是空間中的二維表面。 – 2013-10-15 14:25:34