Plan section of my visual data

1 Ansicht (letzte 30 Tage)
Arif
Arif am 29 Okt. 2020
Bearbeitet: Rik am 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

Akzeptierte Antwort

Rik
Rik am 29 Okt. 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 Kommentare
Arif
Arif am 15 Nov. 2020
Bearbeitet: Rik am 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 am 15 Nov. 2020
Can you provide an actual example of your data?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by