slice 通過體積數據顯示正交切片平麵。
用法
slice(V,sx,sy,sz)
slice(X,Y,Z,V,sx,sy,sz)
slice(V,XI,YI,ZI)
slice(X,Y,Z,V,XI,YI,ZI)
slice(...,'method')
slice(axes_handle,...)
h = slice(...)
示例
體積函數的切片
f(x, y, z)=cos^2 x+cos^2 y-z^2
|x|≤3,|y|≤3,|z|≤3 at x=-2 and 2,y=2,and z=-2.5 and 0.
v=[-3:.2:3];
[x, y, z]=meshgrid (v, v, v);
f= (cos(x).^2+sin(y). ^2-z. ^2);
xv= [-2 2. 5]; yv=2;
zv = [-2.5 0];
slice (x, y, z, f, xv, yv, zv);
輸出:

相關用法
- MATLAB stem3()用法及代碼示例
- MATLAB surf()用法及代碼示例
- MATLAB sphere()用法及代碼示例
- MATLAB stem()用法及代碼示例
- MATLAB surfc()用法及代碼示例
- MATLAB meshz()用法及代碼示例
- MATLAB contour()用法及代碼示例
- MATLAB loglog()用法及代碼示例
- MATLAB ribbon()用法及代碼示例
- MATLAB comet()用法及代碼示例
- MATLAB Stairs()用法及代碼示例
- MATLAB pcolor()用法及代碼示例
- MATLAB Bar()用法及代碼示例
- MATLAB contour3()用法及代碼示例
- MATLAB barh()用法及代碼示例
- MATLAB area()用法及代碼示例
- MATLAB waterfall()用法及代碼示例
- MATLAB quiver()用法及代碼示例
- MATLAB Semilogy()用法及代碼示例
- MATLAB plotyy()用法及代碼示例
注:本文由純淨天空篩選整理自 MATLAB slice()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。