How to add a subfigure on top of an other figure?

Réponses (1)

Sean de Wolski
Sean de Wolski le 28 Mai 2015

0 votes

Add another axes with the axes() command.
See the example here: doc axes

1 commentaire

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')

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graphics Object Properties dans Centre d'aide et File Exchange

Question posée :

le 28 Mai 2015

Commenté :

le 28 Mai 2015

Community Treasure Hunt

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

Start Hunting!

Translated by