How to plot 16 curves that are same y axis and different x axis on the same figure?

1 view (last 30 days)
Hi everybody,
As the title, has anybody experienced this matter? The 16 curves have different x axes. I've tried with the bottom, top, left and right sides of the axes but it seemed to work with 2 plots. Could someone give me some advice to make the the figure with 16 x axes at the bottom of the figure?
Any help would be greatly appreciated.
Thank you.
  2 Comments
Khanh
Khanh on 26 Dec 2014
Excuse for my English.
The picture below shows the figure with a x axis and multiple y axes. How could I make a figure with a y axis and multiple x axes.

Sign in to comment.

Accepted Answer

dpb
dpb on 26 Dec 2014
Edited: dpb on 29 Dec 2014
Nothing special, just mung on the axes position to shrink the height instead of width and instead of hiding the horizontal dimension of the additional axes, do so for on the vertical...
Basic idea is
hAx1=axes; % make first/main one
p1=get(hAx1,'position'); % get the position array
p1(4)=p1(4)*0.75;
set(hAx1,'position',p1) % shrink the height by 25%
p2=p1; p2(2)=p2(2)+p2(4)+0.05; % new bottom based on size of first
p2(4)=eps; % new height is miniscule so doesn't show
hAx2=axes('position',p2,'color','none'); % second x-axis only shows
xlim(hAx2,[0 5]) % sample different scaling
More are just repetitions of the above basic idea...
NB: this way you plot into hAx1 but have to scale the x values from those of the alternate axes to the x-axis limits of it, not those of the alternative axes; they're just for show.
It would be nice if TMW would have a single axis object instead of only the axes combined object but they don't.

More Answers (0)

Categories

Find more on Specifying Target for Graphics Output in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!