How to plot a column in Excel using Matlab
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Khairul Afifi
am 26 Nov. 2014
Kommentiert: Image Analyst
am 29 Nov. 2014
I would like to plot a column in Excel using MATLAB. There are 9 column which are column A,B,C,D,E,F,G and H and 1441 rows. I would like to plot column F with 1441 rows using Matlab. I also wish to plot column H,F and G simultaneously in a figure. I hope someone can teach me. Thank you.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 26 Nov. 2014
[numbers, txt, raw] = xlsread(filename);
colf = numbers(:, 6);
colg = numbers(:, 7);
colh = numbers(:, 8);
plot(colf, 'bo-');
hold on;
plot(colg, 'rd-');
plot(colh, 'gd-');
0 Kommentare
Weitere Antworten (1)
Khairul Afifi
am 29 Nov. 2014
1 Kommentar
Image Analyst
am 29 Nov. 2014
You're welcome. Can you then go ahead and mark the Answer officially as "Accepted"? Thanks in advance.
Siehe auch
Kategorien
Mehr zu Bar Plots 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!