Plan section of my visual data

Plan section of my visual data
i need to get output of figure in different plan sections.
how can i do this process in matlab?
like this figure

 Accepted Answer

[X,Y,Z] = meshgrid(linspace(0,1000,50),linspace(0,1000,50),linspace(-500,0,50));
V = rand(size(X));
xslice = [];
yslice = [];
zslice = -450:100:-50;
slice(X,Y,Z,V,xslice,yslice,zslice)
daspect([1 1 1/4])

2 Comments

Arif
Arif on 15 Nov 2020
Edited: Rik on 15 Nov 2020
thank you so much Rik
And can you help me, to find out, how can I put my pictures from out of Matlab, in spite of the mesh grids?
My pictures didn't have any coordinate.
Can you provide an actual example of your data?

Sign in to comment.

More Answers (0)

Asked:

on 29 Oct 2020

Edited:

Rik
on 15 Nov 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!