calcMDF
(method of orientation)
computes an MDF from individuel orientations
The function calcMDF applies one of the following algorithms to compute an MDF from a list of orientations.
- direct kernel density estimation
- kernel density estimation via Fourier series
- Bingham estimation
Syntax
% use kernel density estimation with a 10 degree kernel mdf = calcMDF(ori,'halfwidth',10*degree)
% use grain area as weights for the orientations mdf = calcMDF(grains.meanOrientation,'weights',grains.area)
% use a specific kernel psi = AbelPoissonKernel('halfwidth',10*degree) mdf = calcMDF(ori,'kernel',psi)
% compute the MDF as a Fourier series of order 16 mdf = calcMDF(ori,'order',16)
Input
ori | |||||||||||||
param,val | Parameters and values that control calcMDF
|
||||||||||||
param | Options that control the calcMDF behavior
|
Output
mdf |
See also
orientation/calcFourierMDF, orientation/calcKernelMDF, orientation/calcBinghamMDF, ebsd_demo, EBSD2mdf, EBSDSimulation_demo
MTEX 4.2.0 |