How to add a subfigure on top of an other figure?
Afficher commentaires plus anciens
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
Réponses (1)
Sean de Wolski
le 28 Mai 2015
0 votes
Add another axes with the axes() command.
1 commentaire
Joseph Cheng
le 28 Mai 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')
Catégories
En savoir plus sur Graphics Object Properties dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!