x-axes are not coincident using multiple axes

2 ビュー (過去 30 日間)
Mos_bad
Mos_bad 2019 年 7 月 19 日
回答済み: Adam Danz 2019 年 7 月 19 日
I am using multipe axes using the code below. The top x-axis is not coincident as shown in attached file.
ax2=axes('xaxislocation','top','yaxislocation','right','color','none', 'xscale', 'log', 'yscale', 'log');
  4 件のコメント
Mos_bad
Mos_bad 2019 年 7 月 19 日
Thanks Adam, the issue was solved by your comment.
Adam Danz
Adam Danz 2019 年 7 月 19 日
Great! I'll move my comment to the answers section to the question is marked answered.

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

採用された回答

Adam Danz
Adam Danz 2019 年 7 月 19 日
(Copied from comments section)
I'm wondering the same thing Jan asked. It should look something like this:
ax2 = axes(...,'Position',ax1.Position,...)
But that alone wont' align the two sets of x-ticks. You'll need to use xlim() to control the x axis limits and you'll need to set the xtick using set(h,'XTick', ...) to ensure there are the same number of ticks on each axis.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by