?? plot_unit_sphere.m
字號:
% plot_unit_sphere% Plot a wiremesh of the unit sphere onto the current axes.function out = plot_sphere(varargin);if nargin > 0, pointCount = varargin{1};else, pointCount = 20;end[sphereX, sphereY, sphereZ] = sphere(pointCount);mesh(sphereX, sphereY, sphereZ, 1*ones(pointCount,pointCount));hidden off;axis equal;colormap(colorcube)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -