ruediger Kilian
unread,Sep 19, 2019, 11:44:51 AM9/19/19Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mtex...@googlegroups.com
Hi Mirtunjay,
import your data (i.e. using loadOrientation_generic() ) such that you'll have orientations o and the same number of hardness data d.
One possibility:
h = project2FundamentalRegion(inv(o).*IPF_reference_direction);
contourf(h,d,'fundamentalRegion','inverseDistance')
%hold on
%plot(h,d,'fundamentalRegion') % just to see if your interpolation males sense
%hold off
For other interpolation methods see help vector3d/interp .
IPF_reference_direction is of type vector3d.
To determine min/max color range use the CLim function.
Hope that helps.
Cheers,
Rüdiger