Wolfram Language Fast Introduction for Math Students
开始使用 »

极坐标

创建二维极坐标图

(键入 ESCthESC 可得到 θ 符号.)
In[1]:=
Click for copyable input
PolarPlot[Sin[2 \[Theta]] + Cos[2 \[Theta]], {\[Theta], 0, 2 Pi}]
Out[1]=

显示极坐标轴

In[2]:=
Click for copyable input
PolarPlot[Sin[2 \[Theta]] + Cos[2 \[Theta]], {\[Theta], 0, 2 Pi}, 
 PolarAxes -> Automatic, 
 PolarTicks -> {0 \[Degree], 90 \[Degree], 180 \[Degree], 
   270 \[Degree]}]
Out[2]=

把直角坐标转换成极坐标:

In[1]:=
Click for copyable input
ToPolarCoordinates[{1, 1}]
Out[1]=

快速参考:角度和极坐标 »