mtex-toolbox / mtex

MTEX is a free Matlab toolbox for quantitative texture analysis. Homepage:
http://mtex-toolbox.github.io/
GNU General Public License v2.0
278 stars 183 forks source link

computation of odf.norm does not finish (on earthly timescales) #1901

Closed kilir closed 1 year ago

kilir commented 1 year ago

The following finishes withing fractions of a second.

    mtexdata dubna
    odf = calcODF(pf,'halfwidth',15*degree)
    odf = FourierODF(odf)
    tic
    J = odf.norm
    out = toc

while

    odf = calcODF(pf,'halfwidth',15*degree)
    tic
    J = odf.norm
    out = toc

runs extremly slow and forever.

Tested on windows as well as linux.

Cheers, Rüdiger