Evgeni Burovski
Evgeni Burovski
OK, the documentation has been expanded, https://scipy.github.io/devdocs/tutorial/interpolate.html Additions, clarifications and other improvements to the docs are most welcome! RectBivariateSpline behavior is frozen by the backwards compatiblity. `interp2d` is (finally) deprecated...
We definitely want more flexible ways to construct smoothing splines. The first activity in this direction is gh-16653 which implements GCV smoothing splines with knots at datapoints. My current thinking...
Maybe it's https://github.com/scikit-image/scikit-image/issues/3757 ?
I don't remember details, sorry. The git history of my sandbox repo (github remembers!) shows a separate commit, but not much else. It's possible that the threshold is from some...
@ilayn any chance you could write it down while it's still fresh for you?
We are highly unlikely to add new features to interp2d--- this is a legacy function and is best avoided in new code. What to use instead depends on what you...
Ok, this sounds just the use case for LinearNDInrerpolator/grid data. Glad to hear it works well. We won't be adding new functionality in interp2d, so I'll close this. Thanks for...
These tests should actually pass, by the looks of it. I'd try to drop into pdb on failure and poke around (`-- --pdb` IIRC) , or just put a breakpoint...
Ah, yes. This was me, doing what looked like an obvious easy cleanup. No need for a separate issue I'd say, can just fix it up (this same PR or...