MATLAB Function Reference |
Syntax
sphere sphere(n) [X,Y,Z] = sphere(...)
Description
sphere
函式可產生利用 surf
和 mesh
函式所畫出一單位球體時所要用到的 x, y, 和 z 座標。
sphere
會產生一個由 20 × 20 個構面所組成的球體。
sphere(n)
可在目前的圖形視窗中畫出一個具有 n
× n
個構面之球體的立體曲面圖。
[X,Y,Z] = sphere(n)
會以三個大小為 (n+1)
×(n+1)
的矩陣回傳一個球體的座標。你可以利用surf(X,Y,Z)
或 mesh(X,Y,Z)
來畫出該球體。
Examples
sphere axis equal
See Also
sph2cart | spinmap |