Ploting a 3d figure by exel data

3 vues (au cours des 30 derniers jours)
Niloofar Moosavi
Niloofar Moosavi le 19 Août 2022
Réponse apportée : KSSV le 19 Août 2022
I need to plot this plot by this exel file with those scale of z what is it code
<<../o>>
?

Réponses (1)

KSSV
KSSV le 19 Août 2022
T = readtable('https://in.mathworks.com/matlabcentral/answers/uploaded_files/1101815/Ex12.xlsx') ;
data = table2array(T) ;
x = data(1,2:end) ;
y = data(2:end,1) ;
Z = data(2:end,2:end) ;
pcolor(x,y,Z') ;

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by