利用Matlab画插图

论文中经常要在图中再加插图,这样做的好处是:

  1. 文意表达更文紧凑、密切;
  2. 可以节省论文的版图,尤其是在Letters类文章中。

如下笔者展示了如何利用Matlab来做插图。具体而言,即在y = sin(x)这幅图中插入y = x 和y = x2 这两个小图,分别位于原图的右上方和左下方。

clear all;
x = 0 : 0.01 : 2 * pi;
y1 = sin(x); y2 = x; y3 = x.^2;
g1 = plot(x, y1);hold on;
text('interpreter','latex','position',[3,0],'string','$f(x)=sin(x)$')
axes('position', [0.65 0.65 0.2 0.2])
plot(x, y2)
text('interpreter','latex','position',[2,3],'string','$f(x)=x$')
axes('position', [0.2 0.2 0.25 0.25])
plot(x, y3)
text('interpreter','latex','position',[2,6],'string','$f(x)=x^2$')
利用Matlab画插图_第1张图片
insert_plot.png

你可能感兴趣的:(利用Matlab画插图)