You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Data interpolation is done with a "polint" function inside several modules, so there are duplicate "polint" functions. Better to move them into one place (probably an interpolate module).
In the same manner the actual interpolation and boundary handling is a duplicate in several modules, better move that to the base module.
Right now the end correction coefficients are loaded and then partly interpolated to the specific transform the user wants to do. The interpolation as of now is cubic, but it would be nice to use higher order for more accuracy if possible and in general not have another duplicate interpolation function (i.e. use "polint" function from point 1)
The text was updated successfully, but these errors were encountered:
Data interpolation is done with a "polint" function inside several modules, so there are duplicate "polint" functions. Better to move them into one place (probably an interpolate module).
In the same manner the actual interpolation and boundary handling is a duplicate in several modules, better move that to the base module.
Right now the end correction coefficients are loaded and then partly interpolated to the specific transform the user wants to do. The interpolation as of now is cubic, but it would be nice to use higher order for more accuracy if possible and in general not have another duplicate interpolation function (i.e. use "polint" function from point 1)
The text was updated successfully, but these errors were encountered: