在之前的文章中,分享了Matlab折线图的绘制模板:
三维折线图的绘制模板:
以及一些特殊的线图:
这次再来分享一种线图:阶梯图。
先来看一下成品效果:
特别提示:Matlab论文插图绘制模板系列,旨在降低大家使用Matlab进行科研绘图的门槛,只需按照模板格式添加相应内容,即可得到满足大部分期刊以及学位论文格式要求的数据插图。如果觉得有用可以分享给你的朋友。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取数据,定义自变量、因变量。
% 读取数据
% 定义自变量
x = linspace(0,4*pi,30)';
% 定义因变量
samp1 = 0.5*cos(x);
samp2 = 1*cos(1.5*x);
samp3 = 1.5*cos(0.5*x);
samp4 = 1.5*cos(x);
2. 颜色定义
颜色搭配比较考验个人审美,需要多加尝试。
这里直接使用之前分享的colorplus工具:
%% 颜色定义
C = colorplus([34 202 83 104]);
C1 = C(1,:);
C2 = C(2,:);
C3 = C(3,:);
C4 = C(4,:);
3. 阶梯图绘制
使用‘stairs’命令,绘制未经美化的阶梯图。
-
S1 =
stairs(x, samp1);
-
S2 =
stairs(x, samp2);
-
S3 =
stairs(x, samp3);
-
S4 =
stairs(x, samp4);
-
hXLabel =
xlabel(
'Point spacing (m)');
-
hYLabel =
ylabel(
'MAE (m)');
4. 细节优化
为了插图的美观,赋上之前选择好的颜色,并调节线的其它属性。
% 定义线宽和颜色(或线型、符号、线宽和颜色)
set(S1, 'LineWidth', 1.5, 'Color', C1)
set(S2, 'LineWidth', 1.5, 'Color', C2)
set(S3, 'LineWidth', 1.5, 'Color', C3)
set(S4, 'LineWidth', 1.5, 'Color', C4)
% set(S1, 'LineStyle', '-', 'Marker', '.', 'MarkerSize', 18, 'LineWidth', 1.5, 'Color', C1)
% set(S2, 'LineStyle', '-', 'Marker', '*', 'LineWidth', 1.5, 'Color', C2)
% set(S3, 'LineStyle', '-', 'Marker', 'o', 'LineWidth', 1.5, 'Color', C3)
% set(S4, 'LineStyle', '-', 'Marker', 's', 'LineWidth', 1.5, 'Color', C4)
进一步,调整坐标轴、字体字号、背景颜色等细节:
% 坐标轴美化
set(gca, 'Box', 'off', ... % 边框
'XGrid', 'off', 'YGrid', 'on', ... % 网格
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1],... % 坐标轴颜色
'XTick', 0:2:14,...
'XLim', [0 4*pi],...
'YTick', -2:0.5:2, ...
'YLim', [-1.7 2])
ax2 = axes('Position',get(gca,'Position'),...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none',...
'XColor','k','YColor','k');
set(ax2,'YTick', []);
set(ax2,'XTick', []);
box on
% Legend
hLegend = legend([S1,S2,S3,S4], ...
'Samp1', 'Samp2','Samp3','Samp4', ...
'Location', 'northeast',...
'orientation','horizontal');
% 字体字号
set(gca, 'FontName', 'Arial', 'FontSize', 9)
set([hXLabel,hYLabel,hLegend], 'FontName', 'Arial', 'FontSize', 10)
% 背景颜色
set(gcf,'Color',[1 1 1])
设置完毕后,以期刊所需分辨率、格式输出图片。
%% 图片输出
figW = figureWidth;
figH = figureHeight;
set(figureHandle,'PaperUnits',figureUnits);
set(figureHandle,'PaperPosition',[0 0 figW figH]);
fileout = 'test2';
print(figureHandle,[fileout,'.png'],'-r300','-dpng');
以上。
完整代码:
转载:https://blog.csdn.net/qq_26447137/article/details/125842867
查看评论