How to plot values from excel sheet
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Ortinomax
2015-3-30
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))
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Import from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!