AthenaEPI / dmipy

The open source toolbox for reproducible diffusion MRI-based microstructure estimation
MIT License
96 stars 30 forks source link

Fractional parameter needs to be able to take non-zero lower bound. #28

Open rutgerfick opened 5 years ago

rutgerfick commented 5 years ago

Right now a fractional parameter ranges between [0-1] * some_parameter, but that means that it can also take the value 0, which is typically not the case in some_parameter.

fractional parameter should be defined to also take into account the parameter_ranges of some_parameter, i.e. value_min + [0-1] * (some_parameter - value_min), where some_parameter ranges between value_min and some value_max.