Different crystallographic directions in one pole figure #2170
Answered
by
kilir
ddimitriou2009
asked this question in
Ask Anything
-
Hello, I am looking to plot the three main miller indices from an isolated area on the same pole figure instead of three separate ones. poly1 = selectPolygon;
ind1 = inpolygon(ebsd,poly1);
% reduce the data to that within the polygon
ebsd_poly1 = ebsd(ind1);
figure();
ori1=ebsd_poly1('forsterite').orientations
plotPDF(ori1,Miller(1,0,0,ori1.CS), 'points','all','equalarea','antipodal', 'centerline','markerSize',25,'defaultFontName','Arial');
hold all
plotPDF(ori1,Miller(0,1,0,ori1.CS), 'points','all','equalarea','antipodal', 'centerline','markerSize',25,'defaultFontName','Arial')
plotPDF(ori1,Miller(0,0,1,ori1.CS), 'points','all','equalarea','antipodal', 'centerline','markerSize',25,'defaultFontName','Arial')
hold off I am clearly missing something, but can't find it. Would love some advice. |
Beta Was this translation helpful? Give feedback.
Answered by
kilir
Jul 22, 2024
Replies: 1 comment 1 reply
-
Hi, mtexdata small
h = Miller({1,0,0},{0,1,0},{0,0,1},ebsd('f').CS);
o= ebsd('f').orientations;
for i = 1:length(h)
plot(o*symmetrise(h(i),'unique'),'add2all','MarkerSize',4)
hold on
end
hold off |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ddimitriou2009
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
plotPDF
won't work in that case but you can use vector3d/plot()