它生成一个椭球函数。
用法
[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 errorbar()用法及代码示例
- MATLAB meshz()用法及代码示例
- MATLAB contour()用法及代码示例
- MATLAB loglog()用法及代码示例
- MATLAB ribbon()用法及代码示例
- MATLAB comet()用法及代码示例
- MATLAB Stairs()用法及代码示例
- MATLAB pcolor()用法及代码示例
- MATLAB Bar()用法及代码示例
- MATLAB contour3()用法及代码示例
- MATLAB barh()用法及代码示例
- MATLAB area()用法及代码示例
- MATLAB stem3()用法及代码示例
- MATLAB waterfall()用法及代码示例
- MATLAB quiver()用法及代码示例
- MATLAB slice()用法及代码示例
- MATLAB Semilogy()用法及代码示例
- MATLAB plotyy()用法及代码示例
- MATLAB fill3()用法及代码示例
- MATLAB fill()用法及代码示例
注:本文由纯净天空筛选整理自 MATLAB ellipsoid()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。