Space between bars in hist plot

3 ビュー (過去 30 日間)
John
John 2013 年 1 月 11 日
Hi,
I am using the code below to generate a plot like this.
x = randn(30,1);
[y2,x2] = ecdf(x);
[y1,x1] = hist(x);
plotyy(x1,y1,x2,y2,@(x,y)bar(x,y,1,'c'),'stairs')
Would anybody know how to get a space between the bars like the example?
Many thanks

採用された回答

Daniel Shub
Daniel Shub 2013 年 1 月 11 日
You are looking for the BarWidth property
plotyy(x1,y1,x2,y2,@(x,y)bar(x,y,1,'c', 'barwidth', 0.9),'stairs')
  1 件のコメント
John
John 2013 年 1 月 11 日
Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTest Model Components についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by