How to add a subfigure on top of an other figure?
Mostrar comentarios más antiguos
I would like to add a subfigure on top of another figure, like a legend. For example like this: http://www.mdpi.com/sensors/sensors-12-03578/article_deploy/html/images/sensors-12-03578f3-1024.png
Respuestas (1)
Sean de Wolski
el 28 de Mayo de 2015
0 votos
Add another axes with the axes() command.
1 comentario
Joseph Cheng
el 28 de Mayo de 2015
so you'll then modify the new axes with the position parameter like:
figure(1)
mainAX = plot(magic(3).*randi(10,3,3));
subAX = axes('position',[.4 .7 .2 .2]);
xlabel('Voltage')
ylabel('current')
Categorías
Más información sobre Graphics Object Properties en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!