2D plot with 3 axis and 3 column data

3 ビュー (過去 30 日間)
N/A
N/A 2020 年 2 月 14 日
コメント済み: Star Strider 2020 年 2 月 20 日
I have 3 column data. I plot 2D 3 axis graph in Excel. I want the same also with colours and labels on Matlab. It is attached as graph name. Can you help me please?

採用された回答

Star Strider
Star Strider 2020 年 2 月 14 日
I have no idea which column is which curve.
Try this:
[D,T,R] = xlsread('Kitap3.xlsx');
Q1 = D(1:15,:);
time = linspace(0, size(D,1), size(D,1));
figure
yyaxis left
plot(time, D(:,1))
hold on
plot(time, D(:,2))
yyaxis right
plot(time, D(:,3))
hold off
Experiment with the column assignments to get the result you want.
See the documentation on yyaxis for details.
  6 件のコメント
N/A
N/A 2020 年 2 月 20 日
Thank you :)
Star Strider
Star Strider 2020 年 2 月 20 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by