An abstract class to be sub-classed by specific odf models
All odf models should provide a fit method which may take data as it’s first and only argument.
Methods
fit(data) | To be implemented by specific odf models |
To be implemented by specific odf models
The general fractional anisotropy of a function evaluated on the unit sphere
Min-max normalization of a function evaluated on the unit sphere
Normalizes samples to (samples - min(samples)) / (max(samples) - min(samples)) for each unit sphere.
Parameters: | samples : ndarray (..., N)
out : ndrray (..., N), optional
|
---|---|
Returns: | out : ndarray, (..., N)
|