Move this box around to zoom in on or pan across another axes. Similar in functionality to SPTOOL zoom and pan.
Ideal for signal processing, large data sets, and time series data.
Doug Hull (2021). ZoomBox (https://www.mathworks.com/matlabcentral/fileexchange/2884-zoombox), MATLAB Central File Exchange. Retrieved .
Inspired by: moveplot.m, Mastering Mechanics 1: Using MATLAB 5
Inspired: On-figure magnifier
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Create scripts with code, output, and formatted text in a single executable document.
don't work with MATLAB 2012b!!
I am trying to use the zoombox, but the box does not show any data.
This is my code-- The way I am trying to call the zoombox
x=(0:0.001:25);
y = 1.5*cos(x) + 6*exp(-.1*x) + exp(.07*x).*sin(3*x);
hChildAxes = subplot(2,1,1); %child
plot([2 3 4],0)
hParentAxes = subplot(2,1,2); %parent
p=plot(hParentAxes,x,y);
ym = mean(y);
hold on
plot(hParentAxes,[min(x) max(x)],[ym ym],'Color','red')
hold off
ylab = get(hParentAxes,'YTick')
set(hParentAxes,'YTick',sort([ylab ym]))
zoomBox(hParentAxes, hChildAxes,0)
Please help!!
If you have a code that uses this and works could you share it with me please?
MATLAB's new case sensitivity is leading to that error. You need to rename all instances of isAppData to isappdata and it works again.
Hi I tried the exemple but got errors :
??? Undefined function or method 'isAppData' for input arguments of type 'double'.
Error in ==> zoomBox>isChildAxes at 170
flag = isAppData(hAxes, 'hZBparentAxes');
Error in ==> zoomBox>isZoomBoxAxes at 178
flag = isChildAxes(hAxes) | isParentAxes(hAxes);
Error in ==> zoomBox>destroyExistingZoomBoxes at 208
if isZoomBoxAxes(hAxesList(i))
Error in ==> zoomBox at 110
destroyExistingZoomBoxes([hParentAxes; hChildAxes(:)]);
>>
Great idea! Useful tool.
Very useful!!!
Just one thing: If you use MatLab under UNIX, it is necessary to modify the "isAppData" function called by ZoomBox.m in "isappdata" (i.e: eliminate capitals from the name of the function).
Great! Absolutely flawless usability.
Added some lines, so that it displays and updates dateticks on the axes. For my case hours in the top subplot and days in the parentaxes (first vector has to be serial dates of course):
after row 28 of refreshAxesandZoomBoxfromAppData.m
set(hChildAxis,'XTickLabel',datestr(get(hChildAxis,'XTick'),'HH:MM'));
and the same after the plot commands in the example.m script with the appropriate date format strings for child and parent axes.