Plan section of my visual data

1 view (last 30 days)
Arif
Arif on 29 Oct 2020
Edited: Rik on 15 Nov 2020
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

Rik
Rik on 29 Oct 2020
[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.
Rik
Rik on 15 Nov 2020
Can you provide an actual example of your data?

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!