Matlab论文插图绘制模板第121期—图中图

不知不觉,《Matlab论文插图绘制模板》系列教程已经连载更新了120期,而《Matlab进阶绘图》系列也更新了30期,分享了一系列各式各样数据图的标准化绘制模板:

Matlab论文插图绘制模板第121期—图中图_第1张图片

本期分享的内容比较特殊,它可以串联起之前分享的一众数据图,从此解锁各式各样的复杂组合图

它便是图中图

先来看一下成品效果:

Matlab论文插图绘制模板第121期—图中图_第2张图片

特别提示:本期内容『数据+代码』已上传资源群中,加群的朋友请自行下载。有需要的朋友可以关注同名公号【阿昆的科研日常】,后台回复关键词【绘图桶】查看加入方式


模板中最关键的部分内容

1. 数据准备

此部分主要是读取/构造原始数据

% 数据构造t = linspace(0,2*pi);t(1) = eps;y = sin(t);

2. 颜色定义

作图不配色就好比做菜不放盐,总让人感觉少些味道。

但颜色搭配比较考验个人审美,需要多加尝试。

这里直接使用TheColor配色工具中的XKCD配色库

C = TheColor('xkcd',[454 384 270 627]);C1 = C(1,1:3);C2 = C(2,1:3);C3 = C(3,1:3);C4 = C(4,1:3);

Matlab论文插图绘制模板第121期—图中图_第3张图片

3. 图中图绘制

利用‘axes’命令,分别绘制图中图各组成部分

% 主图绘制handaxes1 = axes('Units','normalized','Position', [0.12 0.12 0.8 0.8]); plot(t,y,'Color',C1,'LineWidth',2)hXLabel1 = xlabel('t');hYLabel1 = ylabel('sin(t)');hTitle = title('Plot in plot');% 次图1绘制handaxes2 = axes('Units','normalized','Position', [0.57 0.57 0.28 0.28]);fill(t, y.^2, C2,'LineWidth',1.2)hXLabel2 = xlabel('t');hYLabel2 = ylabel('(sin(t))^2');% 次图2绘制handaxes3 = axes('Units','normalized','Position', [0.22 0.22 0.28 0.28]);plot(t,y.^3,'Color',C4,'LineWidth',2)hXLabel3 = xlabel('t');hYLabel3 = ylabel('(sin(t))^3');

4. 细节优化

为了插图的美观,对图形细节等进行美化

% 主图坐标区调整set(handaxes1, 'Box', 'off', ...                                % 边框               'Layer','top',...                                % 图层               'LineWidth',1,...                                % 线宽               'XGrid', 'on', 'YGrid', 'on', ...                % 网格               'TickDir', 'out', 'TickLength', [0.01 0.01], ... % 刻度               'XMinorTick', 'off', 'YMinorTick', 'off', ...    % 小刻度               'XColor', [.1 .1 .1],  'YColor', [.1 .1 .1])     % 坐标轴颜色set(handaxes1, 'XLim',[0 2*pi])set(handaxes1, 'FontName', 'Arial', 'FontSize', 10)set([hXLabel1,hYLabel1], 'FontSize', 11, 'FontName', 'Arial')xc = get(handaxes1,'XColor');yc = get(handaxes1,'YColor');unit = get(handaxes1,'units');ax = axes( 'Units', unit,...           'Position',get(handaxes1,'Position'),...           'XAxisLocation','top',...           'YAxisLocation','right',...           'Color','none',...           'XColor',xc,...           'YColor',yc);set(ax, 'linewidth',1,...        'XTick', [],...        'YTick', []);% 次图1坐标区调整set(handaxes2, 'Box', 'off', ...                                % 边框               'Layer','top',...                                % 图层               'LineWidth',1,...                                % 线宽               'XGrid', 'on', 'YGrid', 'on', ...                % 网格               'TickDir', 'out', 'TickLength', [0.01 0.01], ... % 刻度               'XMinorTick', 'off', 'YMinorTick', 'off', ...    % 小刻度               'XColor', [.1 .1 .1],  'YColor', [.1 .1 .1])     % 坐标轴颜色set(handaxes2, 'FontName', 'Arial', 'FontSize', 9)set([hXLabel2,hYLabel2], 'FontSize', 10, 'FontName', 'Arial')xc = get(handaxes2,'XColor');yc = get(handaxes2,'YColor');unit = get(handaxes2,'units');ax = axes( 'Units', unit,...           'Position',get(handaxes2,'Position'),...           'XAxisLocation','top',...           'YAxisLocation','right',...           'Color','none',...           'XColor',xc,...           'YColor',yc);set(ax, 'linewidth',1,...        'XTick', [],...        'YTick', []);% 次图2坐标区调整set(handaxes3, 'Box', 'off', ...                                % 边框               'Layer','top',...                                % 图层               'LineWidth',1,...                                % 线宽               'XGrid', 'on', 'YGrid', 'on', ...                % 网格               'TickDir', 'out', 'TickLength', [0.01 0.01], ... % 刻度               'XMinorTick', 'off', 'YMinorTick', 'off', ...    % 小刻度               'XColor', [.1 .1 .1],  'YColor', [.1 .1 .1])     % 坐标轴颜色set(handaxes3, 'FontName', 'Arial', 'FontSize', 9)set([hXLabel3,hYLabel3], 'FontSize', 10, 'FontName', 'Arial')xc = get(handaxes3,'XColor');yc = get(handaxes3,'YColor');unit = get(handaxes3,'units');ax = axes( 'Units', unit,...           'Position',get(handaxes3,'Position'),...           'XAxisLocation','top',...           'YAxisLocation','right',...           'Color','none',...           'XColor',xc,...           'YColor',yc);set(ax, 'linewidth',1,...        'XTick', [],...        'YTick', []);% 标题set(hTitle, 'FontSize', 12, 'FontWeight' , 'bold')% 背景颜色set(gcf,'Color',[1 1 1])

设置完毕后,以期刊所需分辨率、格式输出图片。

%% 图片输出figW = figureWidth;figH = figureHeight;set(figureHandle,'PaperUnits',figureUnits);set(figureHandle,'PaperPosition',[0 0 figW figH]);fileout = 'test';print(figureHandle,[fileout,'.png'],'-r300','-dpng');

Matlab论文插图绘制模板第121期—图中图_第4张图片

以上。

你可能感兴趣的:(Matlab插图,matlab,开发语言,可视化,论文插图)