plot excel data in MATLAB
显示 更早的评论
hi all, I have two column in excel I want to plot them by using matlab, lets say I have first column from A1-A10 and second column from B1-B10. how could I plot them in MATLAB ?? please help..
采纳的回答
更多回答(2 个)
Image Analyst
2012-7-14
编辑:Image Analyst
2012-7-14
Use xlsread() to get the entire contents of your workbook into a cell array.
[num,txt,raw] = xlsread(filename); % From the help
Then use cell2mat or something to extract out columns into an x array and a y array.
x = cell2mat(num(1:10, 1)); % Untested
y = cell2mat(num(1:10, 2)); % Untested
Then, to plot, use
plot(x,y);
9 个评论
Samer Husam
2012-7-14
Walter Roberson
2012-7-14
The array "num" that is returned by xlsread() is a numeric array instead of a cell array.
x = num(1:10,1);
y = num(1:10,2);
plot(x,y)
Samer Husam
2012-7-14
Samer Husam
2012-7-14
Walter Roberson
2012-7-14
The letters correspond to column numbers, which are the second coordinate. The numbers correspond to rows, which are the first coordinate.
A6 = num(6,1);
B6 = num(6,2);
Samer Husam
2012-7-14
Azzi Abdelmalek
2012-7-14
num is double, u have not to use cell2mat
Walter Roberson
2012-7-17
What does size(num) show? And please show your xlsread() command so we are sure we are talking about the same options.
andhavarapu lokesh
2017-3-6
I wanted to plot a excel sheet in matlab is there any method to scale the xaxis and yaxis commonly to all the sheets
arif hussain
2017-5-14
0 个投票
Hello; Can someone please help me matlab doesn't plot my excel data it show the axis only.i have attested the excel file as well.

4 个评论
Walter Roberson
2017-5-14
What is your current code?
Which MATLAB version are you using?
Image Analyst
2017-5-14
What does "attested" mean in this context?
dpb
2017-5-15
Almost certainly a spellcheck miss from a non-English speaker attempting "attached".
Image Analyst
2017-5-15
I guess that makes sense, instead of "verified". However the file was NOT attached - only a screenshot was displayed, no Excel file was attached. Use the paperclip icon.
类别
在 帮助中心 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!