Hello MTEX Community,
Now what I am trying is like this:
[grains,ebsd.grainId] = calcGrains(ebsd);
%My grain Ids are 489 and 490
ori = ebsd(ebsd.grainId == 490).orientations;
mis2mean = inv(grains(490).meanOrientation) .* ori;
figure
plotAngleDistribution(mis2mean)
This gives me a plot like this:
If I do the same for grain 489, I get another plot like this.
However, I want a single histogram containing data for both grains. I want to tell by looking at the histogram how the distribution looks like together i.e. is the distribution bimodal (the grains have very different intragranular misorientation distribution) or not.
Can anyone help me in this regard?
Thank you!