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

Answers (1)

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

1 Comment

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

Sign in to comment.

Asked:

on 28 May 2015

Commented:

on 28 May 2015

Community Treasure Hunt

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

Start Hunting!