- Scale your data so the range of y values match between the two datasets, or
- don't link the axes but instead, carefully set the ylim() for each axis and the ytick.
Link axes with different Y-Scales
31 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alexander von Mach
el 6 de Nov. de 2019
I'm trying to make a plot with 2 y-axes and wasn't able to use the yyaxis command since I want to change the uistack afterwards and it doesn't work with this function showhow. Now I have a new problem because of that. When I try to link the 2 axes, the y-scale of the left axis is changed to the values of the right one that are 10 times bigger.
Is there a way to link the axes to be able to "zoom" or change the parts visible without changing the axis values?
ax2 = axes('Position',[0.1300 0.1100 0.7750 0.8150]);
ax1 = axes('Position',[0.1300 0.1100 0.7750 0.8150]);
plot(ax1,[1 5 10],[1 5 10]); % Just random values not mine
plot(ax2,[1 5 10],[10 50 100]); % Just random values not mine
ax2.YAxisLocation = 'right';
set(ax1, 'Color', 'None');
ax2.XTick = [];
linkaxes([ax1 ax2]);
Thanks for your help
2 comentarios
Adam Danz
el 6 de Nov. de 2019
Editada: Adam Danz
el 14 de Nov. de 2019
"I'm trying to make a plot with 2 y-axes and wasn't able to use the yyaxis command since I want to change the uistack afterwards..."
There probably isn't a need to change the uistack. What exactly are you trying to do that involves the uistack? It would be cleaner to use the yyaxis function so if you could explain the problem you were having, maybe we could fix that instead of fixing the plan-b.
"Is there a way to link the axes to be able to "zoom" or change the parts visible without changing the axis values? "
It looks like the two datasets have different scales so you'll either need to
To reiterate, I think the yyaxis solution is best and we could probably fix your uistack problem.
Respuesta aceptada
Adam Danz
el 7 de Nov. de 2019
Editada: Adam Danz
el 14 de Nov. de 2019
Currently (r2019b) the UI stack cannot be controlled with yyaxis axes which always results in right-axis objects at the top of the stack. If left-axis objects need to be on top of right-axis objects, use plotyy() which is the outdated version of yyaxis (as of r2016a). Just note that plotyy() may be removed in future releases (by then, hopefully uistack options will be available for yyaxis).
Here's a demo
clf()
sph = subplot(2,1,1);
[ax,h1,h2] = plotyy(sph,[0 10 20 30],[30 20 10 0],[0 10 20 30],[0 20 0 20]);
% [ x1 ],[ y1 ],[ x2 ],[ y2 ]
set([h1,h2],'LineWidth',3) % set line object properties
ax(1).Color = 'None'; % set axis 1 (left axis) to transparent
uistack(ax(1),'top') % put axis 1 on top
5 comentarios
Adam Danz
el 14 de Nov. de 2019
Editada: Adam Danz
el 14 de Nov. de 2019
@Alexander von Mach, there was a problem with my original answer, sorry to have led you astray. I've updated my answer with recommendations to use plotyy() which is an outdated function but it's a lot easier and cleaner than overlaying and linking 2 axes on your own.
Más respuestas (0)
Ver también
Categorías
Más información sobre Specifying Target for Graphics Output en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!