Skip to content
Snippets Groups Projects

ENH: Allow `Splinterpolator` instances to be created from an existing set of spline coefficients, and extend extrapolation options

Merged Paul McCarthy requested to merge enh/splinterpolator into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -1498,7 +1498,7 @@ void Splinterpolator<T>::deconv_along(unsigned int dim)
@@ -1498,7 +1498,7 @@ void Splinterpolator<T>::deconv_along(unsigned int dim)
ss *= _dim[i];
ss *= _dim[i];
}
}
if (_nthr==1) { // If we are to run single-threaded
if (_nthr<=1) { // If we are to run single-threaded
SplineColumn col(mdim,mstep); // Column helps us do the job
SplineColumn col(mdim,mstep); // Column helps us do the job
for (unsigned int l=0; l<rdim[3]; l++) {
for (unsigned int l=0; l<rdim[3]; l++) {
for (unsigned int k=0; k<rdim[2]; k++) {
for (unsigned int k=0; k<rdim[2]; k++) {
Loading