Borrar filtros
Borrar filtros

Uistack giving error with yyaxis

26 visualizaciones (últimos 30 días)
Rohit Kumar
Rohit Kumar el 14 de Jun. de 2021
Editada: Adam Danz el 2 de Mzo. de 2022
I am getting an error when I am trying to move the line plotted on yyaxis (right) to the bottom, so that line plotted on y axis is on top. Below is the code to replicate the error. (Tried on 2019b)
figure
subplot(2,1,1)
yyaxis left
h1=plot(1:10,21:30,'r')
yyaxis right
h2=plot(1:10,rand(1,10),'b','linewidth',10)
subplot(2,1,2)
y=rand(1,10);
h3=plot(1:10,randi(10,1,10),'r')
hold on
h4=plot(1:10,randi(10,1,10),'b','linewidth',10)
uistack(h2,'bottom')
uistack(h4,'bottom')
uistack(h2,'bottom') - Throws an error
Error using matlab.graphics.axis.Axes/set
Children may only be set to a permutation of itself
Error in uistack (line 157)
set(UParent,'Children',AllChildren);
while uistack(h4,'bottom') works without an error & does the job of moving the line to bottom.
Kindly let me know if there is any workaround.
  3 comentarios
Rohit Kumar
Rohit Kumar el 14 de Jun. de 2021
@Adam Danz Thanks for confirming & providing a workaround with plotyy. I will stick with yyaxis for now & will wait for uistack to work with yyaxis in a future release.
Appreciate your help..!
Adam Danz
Adam Danz el 14 de Jun. de 2021
Good decision. Be prepared to wait for a while if this feature isn't high on the MW priority list. Another workaround would be to use an axis overlay (general advice on axis overlays) but still, yyaxis is more simpler.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by