在mathematica中怎么用极坐标画图?

2025-03-04 16:26:37
推荐回答(2个)
回答1:

使用PolarPlot函数即可在极坐标画图,比如:
PolarPlot[Sin[3 t], {t, 0, Pi}]
PolarPlot[{1, 1 + 1/10 Sin[10 t]}, {t, 0, 2 Pi}]
PolarPlot[{1, 1 + 1/10 Sin[10 t]}, {t, 0, 2 Pi}, PlotStyle -> {Green, Directive[Dashed, Thick, Orange]}]

回答2:

PolarPlot
比如画图
PolarPlot[theta^2,{theta,0,Pi}]
画出了r=theta^2的图像