% Specify path to your file with orientations and Taylor factor
taylorFile = 'Taylor.inp';
% Specify crystal symmetry
CS = symmetry('cubic');
% Specify specimen symmetry
SS = symmetry('triclinic');
% Load Euler angles as generic EBSD data
myData = loadEBSD_generic(taylorFile,'CS',CS,'SS',SS, 'ColumnNames',{'Euler1' 'Euler2' 'Euler3' 'Taylor'}, 'Bunge');
% Get orientations from the imported data
ori = get(myData,'orientations');
% Get values of Taylor factor from the imported data
tayFac = get(myData,'Taylor');
% Specify pole figure to plot
hkl2plot = Miller(1,0,0);
% Plot orientations in a pole figure with color-coding according to Taylor factors
figure; plotpdf(ori,hkl2plot,'points','all','property',tayFac)
colorbar;