As you may know that the first three columns are the Euler angles. I want to plot a pole figure to show the texture distribution. When I try to import the pole figure data through the import wizard, MTEX is not recognizing the format and a new screen "PoleFigure Generic Interface" comes out to specify how the columns should be interpreted. But, I'm not able to till MTEX that these are the Euler angles. The only options available are: polar angle, azimuth angle, intensity, etc. So, how can I read such format in MTEX?
ori = loadOrientation_generic('eugler_File.txt','ColumnNames',{'Euler1','Euler2','Euler3'})
plotIPDF(ori,[xvector,yvector,zvector],'contourf')%Specify Miller Indice
m1 = Miller(0,0,1,CS);m2 = Miller(1,0,1,CS);m3 = Miller(1,1,1,CS);
%Specify vector
v1 = vector3d(1,0,0);v2 = vector3d(0,1,0);v3 = vector3d(0,0,1);
%% plot IPF from EBSD discrete
plotIPDF(ebsd.orientations,v1,'MarkerSize',2,'PaperPositionMode','auto')annotate([Miller(m1),Miller(m2),Miller(m3)],'all','labeled')