how to plot slice graph from several png files

2 vues (au cours des 30 derniers jours)
Samaneh Arzpeima
Samaneh Arzpeima le 8 Juil 2018
Hello Everybody I have several png files that show displacement varying with time, for a nice visualization I thought that making a slice graph could be a nice idea, I didn't find any example helping me, I would appreciate any help.Thank you
  3 commentaires
Samaneh Arzpeima
Samaneh Arzpeima le 9 Juil 2018
Samaneh Arzpeima
Samaneh Arzpeima le 9 Juil 2018

Connectez-vous pour commenter.

Réponses (1)

KSSV
KSSV le 9 Juil 2018
Modifié(e) : KSSV le 9 Juil 2018
[X,Y,C] = peaks(100) ;
N = 10 ;
Z = ones(size(X)) ;
figure
hold on
for i = 1:N
surf(Z+i,X,Y,C)
end
Rotate for better view.
  1 commentaire
Samaneh Arzpeima
Samaneh Arzpeima le 9 Juil 2018
Thank you I already have 25 png files as outputs of another simulation, I have to use those files and align them.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by