Hi. I have multiple 2D contour plots and i want to stack them as slice views in 3D. I want to stack fig 1 at specific line for example at X=0, the next fig 2 at position X= 0.25. Can someone tell me how can i do that. Kind regards

2 commentaires

KSSV
KSSV le 7 Juin 2021
REad about slice.
Kaushal Kishore
Kaushal Kishore le 7 Juin 2021
How can i stack figures as slices. I tried but was not able to do it

Connectez-vous pour commenter.

Réponses (1)

[X,Y,C] = peaks(100) ;
figure
hold on
for i = 1:10
Z = i*ones(size(X)) ;
Ci = rand*C ;
surf(X,Y,Z,C)
end
view(3)

3 commentaires

Kaushal Kishore
Kaushal Kishore le 9 Juin 2021
How do i stack my images that i already have.
KSSV
KSSV le 9 Juin 2021
You said already you have the data right? In the surf function use your data. Extend the given demo code to your case.
Kaushal Kishore
Kaushal Kishore le 9 Juin 2021
I have got multiple images only. I

Connectez-vous pour commenter.

Catégories

En savoir plus sur Contour Plots dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by