Mathematica绘制函数图像—三维“极坐标”

2025-11-05 17:05:17

1、        球坐标的绘图,用SphericalPlot3D

        举个例子:

SphericalPlot3D[ 1 + 2 Cos[2 \[Theta]], {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

2、        画三个同心半球:

SphericalPlot3D[{1, 2, 3}, {\[Theta], 0, Pi}, {\[Phi], 0, Pi},  PlotPoints -> 30]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

3、        再举一例,这次涉及到复变函数:

SphericalPlot3D[

 Re[Sin[\[Theta]] Cos[\[Theta]] Exp[2 I*\[CurlyPhi]]], {\[Theta], 

  0, \[Pi]}, {\[CurlyPhi], 0, 2 \[Pi]}]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

4、        绘图时,去掉坐标轴:

SphericalPlot3D[ 1 + 2 Cos[2 \[Theta]], {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi},  Axes -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

5、        绘图时,去掉外框:

SphericalPlot3D[{1, 2, 3}, {\[Theta], 0, Pi}, {\[Phi], 0, Pi}, 

 PlotPoints -> 30, Boxed -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

6、        绘图时,去掉网格线:

SphericalPlot3D[

 Re[Sin[\[Theta]] Cos[\[Theta]] Exp[2 I*\[CurlyPhi]]], {\[Theta], 

  0, \[Pi]}, {\[CurlyPhi], 0, 2 \[Pi]}, Mesh -> None]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

7、        红色,不透明,高光:

SphericalPlot3D[

 1 + 2 Cos[2 \[Theta]], {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}, 

 PlotStyle -> Directive[Red, Opacity[1], Specularity[White, 10]], 

 Mesh -> None, PlotPoints -> 30, Axes -> False, Boxed -> False]

        蓝色,半透明,高光:

SphericalPlot3D[

 1 + 2 Cos[2 \[Theta]], {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}, 

 PlotStyle -> Directive[Blue, Opacity[0.7], Specularity[White, 6]], 

 Mesh -> None, PlotPoints -> 30, Axes -> False, Boxed -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

8、        绿色的半透明“仙人掌”:

SphericalPlot3D[

 Re[Sin[\[Theta]] Cos[\[Theta]] Exp[2 I*\[CurlyPhi]]], {\[Theta], 0, 

  Pi}, {\[CurlyPhi], 0, 2 Pi}, 

 PlotStyle -> Directive[Green, Opacity[0.5], Specularity[White, 6]], 

 Mesh -> None, PlotPoints -> 30, Axes -> False, Boxed -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

9、        五个楞的“什么瓜”:

SphericalPlot3D[

 1 + Sin[5 \[Phi]]/5, {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}, 

 PlotStyle -> Directive[Green, Opacity[0.5], Specularity[White, 10]], 

 Mesh -> None, PlotPoints -> 30, Axes -> False, Boxed -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

10、        色彩渐变:

SphericalPlot3D[

 Re[Sin[\[Theta]] Cos[\[Theta]] Exp[2 I*\[CurlyPhi]]], {\[Theta], 0, 

  Pi}, {\[CurlyPhi], 0, 2 Pi}, 

 ColorFunction -> (ColorData["Rainbow"][#6] &), Mesh -> None, 

 PlotPoints -> 25, Boxed -> False, Axes -> False]

        和

SphericalPlot3D[

 1 + Sin[5 \[Phi]]/5, {\[Theta], 0, Pi}, {\[Phi], 0, 2 Pi}, 

 ColorFunction -> (ColorData["Rainbow"][#6] &), Mesh -> None, 

 PlotPoints -> 25, Boxed -> False, Axes -> False]

Mathematica绘制函数图像—三维“极坐标”

Mathematica绘制函数图像—三维“极坐标”

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢