Evgeni Burovski
Evgeni Burovski
Restructure and expand the tutorial for `scipy.interpolate`: - Group the functionality into, roughly, 1D -- N-D gridded -- N-D unstructured data. Make smoothing separate. - For 1D routines stress newer...
We ship two sets of wrappers for the Dierckx FITPACK library: the f2py wrappers,`dfitpack`, and handwritten `_fitpack` wrappers. The origin of duplication is long lost to history, likely traces all...
For a docstrings with several examples, it would be nice to be able to clearly separate them: ``` Examples ------------- Here we show two examples of our awesome function. First...
(this is a continuation of https://github.com/scipy/scipy/pull/5044#issuecomment-126015045) At the moment we have two ways of illustrating scipy functionality. Small examples go to the docstrings, there is also the tutorial for more...
closes https://github.com/cupy/cupy/issues/8205
#### What does this implement/fix? Implement a clone of `splrep` (== UnivariateSpline) in python, without FITPACK. To simplify testing, the result is exposed as `scipy.interpolate.make_splrep`. A decision to be made...
#### Reference issue Continues and closes gh-16391, supersedes and closes gh-19242 #### What does this implement/fix? Continue gh-19242 by @Sheila-nk : refactor the doctesting part of the refguide-check into a...
*Work-in-progress, DO NOT MERGE* Ref: https://mail.python.org/archives/list/[email protected]/thread/XH5RDJ5GZRRBP3UAQGWNWMH6P3KYZAUA/ - Split our modified doctesting into a separate package, and add scipy-specific driver to tools. - The doctesting internals are still at https://github.com/ev-br/scpdt, need...
### Is your feature request related to a problem? Please describe. `cython_{blas,lapack}` does a great job to make using LAPACK from Cython easy: just ``` from scipy.linalg.cython_lapack cimport dgeev ```...
#### Reference issue Partially addresses https://github.com/scipy/scipy/issues/2579, is related to https://github.com/scipy/scipy/pull/19753 #### What does this implement/fix? Add a generator which constructs knot vectors of increasing length for spline fitting. The core...