フィルターのクリア

White space at the beginning and ending of xaxis

48 ビュー (過去 30 日間)
Happy Bear
Happy Bear 2020 年 7 月 13 日
コメント済み: Adam Danz 2020 年 7 月 13 日
Hello everyone,
I made this graph but I want to have some white spacing between the yaxis and the first bin. And then I want some white spacing between the last bin and the right axis of the figure. Just like in this figure:

採用された回答

Adam Danz
Adam Danz 2020 年 7 月 13 日
編集済み: Adam Danz 2020 年 7 月 13 日
axis(ax, 'tight') % where ax is your axis handle.
will set the axis limits so the edges of the plot touch the max and min of your data.
After running that command, you can run the lines below to add +/- 5% of your data range to each side of the x and y axes.
xlim(ax, xlim(ax) + [-1,1]*range(xlim(ax)).* 0.05)
ylim(ax, ylim(ax) + [-1,1]*range(ylim(ax)).* 0.05)
If you only want to apply this to the x-axis limits,
yl = ylim(ax);
axis(ax, 'tight')
ylim(ax, yl)
xlim(ax, xlim(ax) + [-1,1]*range(xlim(ax)).* 0.05)
  4 件のコメント
madhan ravi
madhan ravi 2020 年 7 月 13 日
Happy Bear 🐻 ;)
Adam Danz
Adam Danz 2020 年 7 月 13 日
:D

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

その他の回答 (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