how to plot in matlab from excel data

hi all, I have three column in excel I want to plot them by using matlab, how could I plot them in MATLAB ?? please help..

 採用された回答

Image Analyst
Image Analyst 2015 年 6 月 23 日

0 投票

Try this:
allData = xlsread(filename);
column1 = allData(:, 1); % Extract column #1
column2 = allData(:, 2); % Extract column #2
column3 = allData(:, 3); % Extract column #3
plot(column1, 'rd-', 'LineWidth', 2, 'MarkerSize', 8);
hold on;
plot(column2, 'go-', 'LineWidth', 2, 'MarkerSize', 8);
plot(column3, 'b*-', 'LineWidth', 2, 'MarkerSize', 8);

1 件のコメント

elena
elena 2015 年 6 月 24 日
thank you very much

サインインしてコメントする。

その他の回答 (0 件)

タグ

質問済み:

2015 年 6 月 23 日

コメント済み:

2015 年 6 月 24 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by