how to plot a table data of size 2x47 ?

1 回表示 (過去 30 日間)
bushra raza
bushra raza 2019 年 2 月 9 日
コメント済み: bushra raza 2019 年 2 月 9 日
Hi,
i have a table of size 2x47(attached here for advice).
each column is representing years, and two rows have data of two months. i want to plot /bar each month data year wise . i.e. years on x axis, and month data on y axis, with separate colors, so as to identify each month's trend.
i am using Matlab R2017b. Can any one please guide me?

採用された回答

Image Analyst
Image Analyst 2019 年 2 月 9 日
Try this:
s = load('T_may_june.mat')
T_may_june = s.T_may_june
x = 1971:2017;
may = T_may_june{1,:};
june = T_may_june{2, :};
plot(x, may, 'r*-', 'LineWidth', 2);
hold on;
plot(x, june, 'bs-', 'LineWidth', 2);
grid on;
legend('May', 'June', 'Location', 'northwest');
0000 Screenshot.png
  1 件のコメント
bushra raza
bushra raza 2019 年 2 月 9 日
thanks alot sir, for timely help.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by