Interactive zoom plot

버전 1.1.0 (3.04 KB) 작성자: praveen iv
Interactively draw the zoom area and axes for zoomed axes inlays. Check out the examples in the function to get started.
다운로드 수: 716
업데이트 2021/2/17

라이선스 보기

% Interactive Zoom plot
% [p_ax,ch_ax]= ZoomPlot()
% [p_ax,ch_ax]= ZoomPlot(p_ax)
%
% This function allow you draw zoomed/magnified axes on a existing axes.
% The funciton gets its axes handle from gca() when called with no input
% arguments. This function should work for all 2D linear axes plots like
% plot(), scatter(), quiver().
%
% INPUTS:
% p_ax - parent axes handle
%
%OUTPUTS:
% p_ax: handle of the parent axes
% ch_ax: handle of the child/Zoom axes
%
% Example 1: simple
% x = linspace(0,3*pi,200);
% y = [cos(x) + rand(1,200);cos(x+1) + rand(1,200)];
% figure,plot(x,y),title('Noisy cosines'),xlabel('x'),ylabel(y)
% ZoomPlot();
% %Follow the instructions on the title of the plot
%
% Example 2: create multiple zoomed axes and playing with handles
% x = linspace(0,3*pi,200);
% y = [cos(x) + rand(1,200);cos(x+1) + rand(1,200)];
% figure,plot(x,y),title('Noisy cosines'),xlabel('x'),ylabel(y)
% p_ax=gca;
% [p_ax,ch_ax1]=ZoomPlot(p_ax);
% %follow the instruction on the title of the plot
% [p_ax,ch_ax2]=ZoomPlot(p_ax);
% % set title and other properties with handle
% legend(p_ax,{'Cos','Shifted cos'})
% title(ch_ax1,'1st zoom plot')
% set(ch_ax1,'LineWidth',1.5,'XColor',lines(1),'YColor',lines(1))
% title(ch_ax2,'2nd zoom plot')

Similar plotting function:
https://in.mathworks.com/matlabcentral/fileexchange/59857-zoomplot

Known Issues:
v1.1.0: Size of zoom axes is scaled down during interaction for moving and resizing zoom axes ROI

인용 양식

praveen iv (2026). Interactive zoom plot (https://kr.mathworks.com/matlabcentral/fileexchange/86358-interactive-zoom-plot), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2019a
R2018b 이상 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
버전 게시됨 릴리스 정보
1.1.0

* Can work on existing axes.
* works for all linear 2D axes now like plot(),scatter(),etc
* Preserve parent axes title and legends

1.0.0