Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在寻找这个,但是当我使用 refline 命令时,我不知道如何阻止 MATLAB 调整我的图像大小。线条画得很完美,但我的图像被缩小到非常小的尺寸,以适应窗口中的线条和图像。当我调用 refline 命令时,有没有办法阻止 MATLAB 这样做?
例如: imshow('picture') userline=refline((真的很大的数字让说 99),2); 设置(用户线,'颜色','m','线宽',2)
非常感谢!
refline您可以将轴的限制设置为与调用之前相同。
refline
plot(1:10) ax = gca; refline(0.5,-1) set(gca,'Ylim',get(ax,'Ylim')) set(gca,'Xlim',get(ax,'Xlim'))