How to plot values from excel sheet
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
krishnasri
am 30 Mär. 2015
Kommentiert: krishnasri
am 30 Mär. 2015
I've 60x3 values in excel sheet. I want to plot all those values. can u tell me how to do so. can i use plot3() function? or how can i do so?
0 Kommentare
Akzeptierte Antwort
Ortinomax
am 30 Mär. 2015
First of all, you must to import these values in your workspace in Matlab.
values= xlsread('myExcel.xslx',1,'A1:C60');
After that, you can plot in 3d with something like :
plot3(values(:,1),values(:,2),values(:,3))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spreadsheets 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!