How can I maintain zoom ratio in refreshing plot?

2 views (last 30 days)
I have some problems with plot things.
There are so many properties in plot.
1) Input Image 2) Filtered Image
There are some controllable parameter for filter.
Plot is refreshed versus changing paremter.
For the detail check of image, I used Zoom Tools.
But everytime I refresh it, The image get role-back to initialized zoom factor.
Is there any easy way to get this problem??
Thank you.

Accepted Answer

Jakub Rysanek
Jakub Rysanek on 4 Oct 2016
You can assign a user-defined callback function to the zooming tool:
figure;
plot(1:10);
zz = zoom();
set(zz,'Enable','off');% Zoom is by default NOT clicked...
set(zz,'ActionPostCallback',@zoom_behavior);
Implementation of zoom_behavior() may look like this:
function zoom_behavior(obj,evd)
% Current axes object
ax = evd.Axes;
% Apply yout zooming rule
set(ax,'Xlim',[0 1],'Ylim',[2 9]);
end

More Answers (1)

DS, Park
DS, Park on 19 Oct 2016
You showed me kind a clue things. I got the way to solve the problem. Thank you for your help.

Categories

Find more on Visual Exploration in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!