iqiukp / ZoomPlot-MATLAB

MATLAB Code for Interactive Magnification of Customized Regions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how could it be applied to subplot

BarterlogZ opened this issue · comments

I've tried with subplot but it doesn't work!

Hi. A simple demo for subplot with ZOOMPLOT:

t = 0.1:0.1:100;
subplot(1, 2, 1)
plot(t, sin(t))
zp_1 = BaseZoom();
zp_1.plot;
%
subplot(1, 2, 2)
plot(t, cos(t))
zp_2 = BaseZoom();
zp_2.plot;

and how about the image figure?

Sorry the current version does not support image subplot with ZOOMPLOT.

thx!