Ploting a 3d figure by exel data

I need to plot this plot by this exel file with those scale of z what is it code
<<../o>>
?

Respuestas (1)

KSSV
KSSV el 19 de Ag. de 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') ;

Categorías

Más información sobre Language Fundamentals en Centro de ayuda y File Exchange.

Productos

Versión

R2018b

Preguntada:

el 19 de Ag. de 2022

Respondida:

el 19 de Ag. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by