在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
第一种:magnify是个动态放大镜,固化后可以用tools>edit plot移动小图,能选取多个局部图,这个方法不错 用法:打开figure图,输入magnify,左键动态选取查看,ctrl+左键固化,也可右键固化,‘<’和‘>’缩放方法范围,‘+’和‘-’缩放放大比例。 Ever wish MATLAB had a magnifying glass so you could look at the details of a small region of your plots without having to zoom in and out again and again? Just run 'magnify.m' with the figure of interest as the current figure, then use the left mouse button to bring up a magnified veiw that you control. Or use the 'Ctrl' key while clicking to bring up a magnifying glass that 'locks' onto the figure when released (for use when copying and printing figures). Use the '<' and '>' keys to make the magnifying glass smaller or larger. Use '-' and '+' to decrease or increase the magnification level.
网上一般有三种方法在MATLAB中做图中图,但是我感觉使用magnify是magnify是个动态放大镜,固化后可以用tools>edit plot移动小图,能选取多个局部图。下面详细讲解其使用方法: 1、下载magnify,官网下载地址http://www.mathworks.com/matlabcentral/fileexchange/5961-magnify 2、下载后将文件放到当前figure目录下(也就是当前工作区间中)。 3、打开figure图,输入magnify,然后右键选中想要放大的区域(按着右键不要动),然后可以使用‘<’和‘>’缩放方法范围,‘+’和‘-’缩放放大比例,看着放大的小图满意后松开右键即可。(这一过程网上都管他们叫固化) 4、然后用tools>edit plot就可以移动小图到你想放在的地方了。
第二种:用起来也很方便,缺点是只能框选一处,不能选取多个。 x = -pi:pi/12:pi;
第三种:也可编个小程序,分别在两个图形句柄里画图,可以借鉴下.y = tan(sin(x)) - sin(tan(x)); plot(x,y,'-- ro','LineWidth',2,'MarkerEdgeColor','k','MarkerFaceColor','g', 'MarkerSize',7.5) mmzoom
看下来,还是倾向第三种使用axes方法放大局部图像的方法,关于axes的详细解释见 http://5460521xp.blog.163.com/blog/static/6908756920122210253741/ figure;% 生成新的图形窗口plot(t,y);axis('equal'); % 绘制整体曲线图 axes('Position',[0.18,0.62,0.28,0.25]); % 生成子图 plot(t1,y1); % 绘制局部曲线图 axes函数后的参数说明,以横纵坐标量程为基准: 例中0.18为子图左下角的归一化横坐标位置: (该位置的横坐标-横坐标起始值)/横坐标量程=0.18, 同理,0.62为子图左下角的归一化纵坐标位置: (该位置的纵坐标-纵坐标起始值)/纵坐标量程=0.62, 0.28为子图的归一化宽度,0.25为子图的归一化高度,具体计算过程同上
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论