Hello All,
I have some uncleaned EBSD data as .txt format (sample attached). I have cleaned them following these steps
ebsd = ebsd('indexed');
[grains,ebsd.grainId] = calcGrains(ebsd,'angle',5*degree);
ebsd(grains(grains.grainSize<=5)) = [];
[grains,ebsd.grainId] = calcGrains(ebsd,'angle',5*degree);
ebsd = fill(ebsd);
grains =smooth(grains,4);
I have got clean EBSD image after these operation. But I would like to export the clean EBSD data as .txt file including the elements those are in the attached sample .txt file. ( i.e.x, y coordinates, Euler angles, phase id etc..). Can anyone help me with this please?