當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


MATLAB ellipsoid()用法及代碼示例

它生成一個橢球函數。

用法

[x,y,z] = ellipsoid(xc,yc,zc,xr,yr,zr,n) // It creates three n+1-by-n+1 matrices so that surf(x,y,z) develop an ellipsoid with center (xc,yc,zc) and radii (xr,yr,zr).
[x,y,z] = ellipsoid(xc,yc,zc,xr,yr,zr) // It uses n = 20.
ellipsoid(...) // with no output argument graphs the ellipsoid as a surface.

示例

cx=0;cy=0;cz=0;
rx=1;ry=2;rz=0.5;
ellipsoid(cx,cy,cz,rx,ry,rz)
axis('equal')

輸出:

MATLAB ellipsoid()



相關用法


注:本文由純淨天空篩選整理自 MATLAB ellipsoid()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。