在之前的文章中,分享了一系列Matlab网格曲面图的绘制模板:
这一次,再来分享一下曲面图的绘制模板。
先来看一下成品效果:
特别提示:Matlab论文插图绘制模板系列,旨在降低大家使用Matlab进行科研绘图的门槛,只需按照模板格式添加相应内容,即可得到满足大部分期刊以及学位论文格式要求的数据插图。如果觉得有用可以分享给你的朋友。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取原始数据。
% 读取数据
load data.mat
[X,Y] = meshgrid(xi,yi);
Z = DSM;
2. 颜色定义
作图不配色就好比做菜不放盐,会感觉少点味道。
颜色搭配比较考验个人审美,需要多加尝试。
这里直接使用TheColor配色工具中的SCI权威配色库:
%% 颜色定义
map = TheColor('sci',2073);
% map = flipud(map);
获取方式:公众号(阿昆的科研日常)后台回复 TC
3. 曲面图绘制
使用‘surf’命令,绘制未经美化的曲面图。
s = surf(X,Y,Z,'EdgeColor','none');
hTitle = title('Surface Plot');
hXLabel = xlabel('x');
hYLabel = ylabel('y');
hZLabel = zlabel('z');
view(-41.9,69.5)
4. 细节优化
为了插图的美观,将曲面图赋上之前选择的颜色:
% 赋色
colormap(map)
colorbar
然后,对坐标轴细节进行美化:
% 坐标区调整
axis tight
set(gca, 'Box', 'off', ... % 边框
'LineWidth', 1, 'GridLineStyle', '-',... % 坐标轴线宽
'XGrid', 'on', 'YGrid', 'on', 'ZGrid', 'on',... % 网格
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1],'ZColor', [.1 .1 .1]) % 坐标轴颜色
% 字体和字号
set(gca, 'FontName', 'Arial', 'FontSize', 11)
set([hXLabel,hYLabel,hZLabel], 'FontName', 'Arial', 'FontSize', 11)
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光影渲染器,可以为曲面添加阴影效果:
以上。