%% Import the Data
% create an EBSD variable containing the data
ebsd = EBSD.load(fname,CS,'interface','ctf',...
'convertEuler2SpatialReferenceFrame');
%% 绘制相图
plotx2east % this command tell MTEX to plot the x coordinate pointing towards east
plot(ebsd,'coordinates','on')
%% 绘制取向
% plot(ebsd('Al'),ebsd('Al').orientations,'micronbar','off')
%% 晶界粗化+平滑
grains = calcGrains(ebsd('indexed'),'theshold',8*degree)
grains = smooth(grains,100);
hold on
plot(grains.boundary,'lineWidth',2)
hold off
[MTEX]EBSD_数据处理
最新推荐文章于 2024-09-13 22:06:56 发布