我有一个绘制2个子图(三个图)的图。第二个子图用于绘制散点图。由于我的子图是使用x
和y
的值动态更改的,如何在子图号2上设置第三个图(分散图)的轴,而不会干扰子图号2?< / p>
subplot 211; imshow(I1(y:y+10,x:x+30), 'InitialMagnification','fit'); %plot #1
subplot 212; imshow(I2(y:y+10,x:x+30), 'InitialMagnification','fit'); %plot #2
hold on; scatter(somevalue_x, somevalue_y); %plot #3 on plot #2
axis([y y+10 x x+30]); %this line will change the axis of plot #2 too
hold off;
提前致谢!