How to represent values in horizontal in bar chart

1 回表示 (過去 30 日間)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2013 年 5 月 21 日
http://i44.tinypic.com/33vjga1.jpg...in the link mentioned above, i am getting all the months in a single direction.. i should get like january... den febrauary... den march....
january
febrauary..
march..

採用された回答

David Sanchez
David Sanchez 2013 年 5 月 21 日
x=rand(12,1);
y=rand(12,1);
plot(x,y,'o')
months = ['Jan';
'Feb';
'Mar';
'Apr';
'May';
'Jun';
'Jul';
'Aug';
'Sep';
'Oct';
'Nov';
'Dec'];
set(gca,'YTickLabel',months);
  1 件のコメント
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran 2013 年 5 月 21 日
Thanks David... It worked well for my application..

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

その他の回答 (1 件)

Thomas
Thomas 2013 年 5 月 21 日
編集済み: Thomas 2013 年 5 月 21 日

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by