📄 sa_ex3_4.m
字号:
% Example 3.4 plotting the 3-D mesh pattern for cos(theta)^2.
fx=inline('cos(theta)^2*sin(theta)*cos(phi)')
fy= inline('cos(theta)^2*sin(theta)*sin(phi)')
fz = inline('cos(theta)^2*cos(theta)')
figure
ezmesh(fx,fy,fz,[0 2*pi 0 pi],100)
colormap([0 0 0])
axis equal
set(gca,'xdir','reverse','ydir','reverse')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -