The minimum code for plotting a pole figure is plotPDF(o,h); where o has been previously defined as the dataset (orientations) to plot, and h is the pole figure plane to plot. o can be one orientation, or several thousand.
Before we can define an orientation, we need to define the crystal symmetry
cs = crystalSymmetry('cubic',[1,1,1])
So now, let's define o
%the zxz explicitly means Bunge convention used (this is the default).
o = orientation('euler',0*degree, 36.5*degree, 0 *degree,'ZXZ',cs);