How to put a preview figure window in a main figure window

8 views (last 30 days)
I have a code that gives me the plot of my data. I want to put the same plot figure as a preview in top left corner of the same plot figure window. My code is below:
x=0.01*rand(100,1);
[~,edges] = histcounts(log10(x));
histogram(x,10.^edges)
set(gca, 'xscale','log')

Accepted Answer

Ameer Hamza
Ameer Hamza on 23 Oct 2020
Edited: Ameer Hamza on 23 Oct 2020
You can create a second smaller axes
x=0.01*rand(100,1);
ax1 = axes();
[~,edges] = histcounts(log10(x));
histogram(x,10.^edges)
set(gca, 'xscale','log')
ax2 = axes('Position', [0.05 0.75 0.2 0.2], 'XScale', 'log', 'Box', 'on');
copyobj(ax1.Children, ax2);
  9 Comments
Sadiq Akbar
Sadiq Akbar on 23 Oct 2020
Ok Dear Ameer Hamza. Doesn't matter. You have solved till now.

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!