PlotYY X axis doubled

7 Ansichten (letzte 30 Tage)
ACHOURI ANAS
ACHOURI ANAS am 25 Jun. 2013
Hello,
Can someone please let me know how can avoid to have the X axis doubled when i use the command PlotYY ?
I use PlotYY to plot two curves that have a different Y axis for each one, and the same X axis.
So my problem, is that the X axis appears twice in the graph, and then it is hard to read the X graduation.
Best,
Anas

Antworten (3)

Zhongxian pan
Zhongxian pan am 19 Aug. 2013
linkaxes(AX,'x');
set(AX(2),'XTickLabel',[]);

Leah
Leah am 25 Jun. 2013
you can turn it off by then you won't know if your xaxis consistent for each y axis. it's best to make them match
turn off (not advised)
[AX,H1,H2] = plotyy(...);
set(AX(2),'xticklab',[],'xtick',[])
make match
set(AX(2),'xtick',get(AX(1),'xtick'),'xticklab',get(AX(1),'xticklab'))
  3 Kommentare
Leah
Leah am 25 Jun. 2013
the horizontal line or the tick marks?
ACHOURI ANAS
ACHOURI ANAS am 26 Jun. 2013
the tick marks are not doubled anymore, but the horizontal line is still doubled at the bottom of the plot.

Melden Sie sich an, um zu kommentieren.


Tom
Tom am 25 Jun. 2013
Moving one x axis to the top might make things clearer
AX = plotyy(...);
set(AX(2),'XAxisLocation','Top')
  3 Kommentare
Tom
Tom am 25 Jun. 2013
You can, though it might start to go off the top of the figure, so then you'd need to move the axes down (basically, it might get messy).
Try:
set(AX(2),'XAxisLocation','Top')
hTitle = title(AX(2),'Title String');
Pos = get(hTitle,'Position');
Pos(2) = Pos(2)*1.02; %increase the height by 2%
set(hTitle,'Position',Pos)
ACHOURI ANAS
ACHOURI ANAS am 26 Jun. 2013
ok, thank you very much

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Two y-axis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by