Matlab's slice() function not working as desired

梦想与她 提交于 2020-01-13 05:39:06

问题


I want to plot discrete 2D images at 13 z locations at [4:4:52] using the following lines of code.

a=100;
[mesh.x,mesh.y,mesh.z] = meshgrid(1:1:100,1:1:100,4:4:52);
a_unifdist=0;
b_unifdist=10;
noise=a_unifdist+(b_unifdist-a_unifdist).*rand(100,100,13);
c = (a./mesh.x)+noise;
slice(c,1:100,1:100,4:4:52);

However, I get 13 continuous plots from 1 till 13 instead of 13 discrete locations as shown below:

Could somebody tell me what's my mistake? I want the images to stack at [4:4:52] locations on z-axis. Thanks.


回答1:


Perhaps you meant:

slice(mesh.x, mesh.y, mesh.z, c, [], [], 4:4:52)

Here is a more interesting example than random data:

load mri
D = double(squeeze(D));

h = slice(D, [], [], 1:size(D,3));
set(h, 'EdgeColor','none', 'FaceColor','interp')
alpha(.1)



来源:https://stackoverflow.com/questions/11318724/matlabs-slice-function-not-working-as-desired

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!