当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MATLAB sphere()用法及代码示例


sphere 函数开发单位球体的 x-、y- 和 z-coordinates,用于冲浪和网格。

用法

sphere // It generates a sphere consisting of 20-by-20 faces.
sphere(n) // It draws a surf plot of an n-by-n sphere in the current figure.
[X,Y, Z] = sphere(...) // It returns the coordinates of a sphere in three matrices that are (n+1)-by-(n+1) in size.

示例

生成并绘制一个球体。

sphere(20)
axis('square')
or
[x,y,z]=sphere(20);
surf(x, y, z)
axis('square')

输出:

MATLAB sphere()



相关用法


注:本文由纯净天空筛选整理自 MATLAB sphere()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。