How to add x-axis in the bottom or in the top of a figure?

76 ビュー (過去 30 日間)
Rikke
Rikke 2019 年 4 月 28 日
コメント済み: Rupak Loodh 2022 年 5 月 4 日
I have a graph were I want to have both an x-axis for time and another showing distance.
Is there some easy way to do this? I found a way to easily add an extra y-axis by using yyaxis right, but couldn't find a similar code for adding an extra x-axis.

採用された回答

dpb
dpb 2019 年 4 月 28 日
編集済み: dpb 2019 年 4 月 28 日
Indeed, why after 30 years TMW hasn't built parallel universe for it is simply incomprehensible, I agree. It isn't all that hard, but to continue to force the user to "roll their own" is just plain ruide... :(
Starting with having the existing plot...
hAx1=gca; % get the first axis handle so can address each desired
hAx2=axes('Position',hAx1.Position, ...
'XAxisLocation','top', ...
'YAxisLocation','right', ...
'Color','none', ...
'YTick',[]);
Then, set the 'Xlim','XTick' properties of hAx2 as desired if it is just a scale or plot to the specific axes handle if actually adding data (altho it will then be on the RH axis so I'm guessing that's not what you're doing which is why turned it off)

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by