calcTensor

(method of EBSD)

compute the average tensor for an EBSD data set

Syntax

% applies a tensor on a given phase
[TVoigt, TReuss, THill] = calcTensor(ebsd('phase2'),T_phase2)
% applies each tensor given in order of input to each phase
[TVoigt, TReuss, THill] = calcTensor(ebsd,T_phase1,T_phase2,...)
% returns the specified  tensor
THill = calcTensor(ebsd,T_phase1,T_phase2,'Hill')
% geometric mean instead of arithmetric one
TGeom = calcTensor(ebsd,T_phase1,T_phase2,'geometricMean')

Input

ebsd

EBSD

T_phaseN

tensor for the N-th phase

param,val Parameters and values that control calcTensor
Parameter Description
'Voigt'

Voigt mean

'Reuss'

Reuss mean

'Hill'

Hill mean

'geometricMean'

eometric mean

Output

T

tensor

See also