legend on subplot

Hi all
I have an figure. I have draw numbers of subplot on that figure using iteration. Now i want to add legend(want to show iteration no as legened on each subplot) in each plot during iteration. How i will do that. I am using guide. plz help me. Thank you for your support.

2 comentarios

Sean de Wolski
Sean de Wolski el 16 de Feb. de 2012
You're using GUIDE and SUBPLOT()??
Why not just make the axes in GUIDE?
SUDIP PODDAR
SUDIP PODDAR el 16 de Feb. de 2012
I want to add legend dynamically on each subplot & the number of subplot is not predefined, it may be 10 or 20 or 25 like that.

Iniciar sesión para comentar.

Respuestas (2)

ScottB
ScottB el 16 de Feb. de 2012

0 votos

Each subplot is a unique axis. The legend command lets you specify the axis where the legend will be created:
"LEGEND(AX,...) puts a legend on the axes with handle AX."
So if you get the axis handles when you create the subplots you can then specify the legend for each subplot.

2 comentarios

SUDIP PODDAR
SUDIP PODDAR el 19 de Feb. de 2012
I cant understand. Plz specify briefly. Thanks for your reply
SUDIP PODDAR
SUDIP PODDAR el 19 de Feb. de 2012
i want to do the following. But not working. plz help
c=1:10
subplot(1,4,c), plot([1:100],'DisplayName','Fig 'c);
plz help me

Iniciar sesión para comentar.

Sean de Wolski
Sean de Wolski el 16 de Feb. de 2012

0 votos

subplot(121);
peaks
legend('peaks');
subplot(122);
plot(1:10);
legend('1:10')

1 comentario

Dan Po
Dan Po el 30 de Sept. de 2016
this actually works compared to other answers

Iniciar sesión para comentar.

Etiquetas

Preguntada:

el 16 de Feb. de 2012

Comentada:

el 30 de Sept. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by