Ploting a 3d figure by exel data
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
I need to plot this plot by this exel file with those scale of z what is it code
<<../o>>
?
0 Kommentare
Antworten (1)
  KSSV
      
      
 am 19 Aug. 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') ;
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Develop Apps Using App Designer 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!
