Skip to content

Releases: f0uriest/interpax

v0.3.3

12 Jun 17:25
7bb2b5d
Compare
Choose a tag to compare

Reverts periodicity changes from v0.3.2

These will be re-implemented in a future release after some other fixes.

v0.3.2

04 Jun 16:21
019d2ec
Compare
Choose a tag to compare

What's Changed

  • Ensure check argument is passed through correctly by @f0uriest in #27
  • Fix periodic transformation to avoid dx==0 by @f0uriest in #29

Full Changelog: v0.3.1...v0.3.2

v0.3.1

06 Mar 00:47
3750bc2
Compare
Choose a tag to compare
  • Update required equinox version.

v0.3.0

05 Mar 19:08
e178cba
Compare
Choose a tag to compare

What's Changed

  • Fix bug when extrap is float. #18

  • Adds a number of classes that replicate most of the functionality of the
    corresponding classes from scipy.interpolate : #25

    • scipy.interpolate.PPoly -> interpax.PPoly
    • scipy.interpolate.Akima1DInterpolator -> interpax.Akima1DInterpolator
    • scipy.interpolate.CubicHermiteSpline -> interpax.CubicHermiteSpline
    • scipy.interpolate.CubicSpline -> interpax.CubicSpline
    • scipy.interpolate.PchipInterpolator -> interpax.PchipInterpolator
  • Method "akima" now available for Interpolator.{1D, 2D, 3D} and corresponding
    functions. #23

  • Method "monotonic" now works in 2D and 3D, where it will preserve monotonicity
    with respect to each coordinate individually. #23

Full Changelog: v0.2.4...v0.3.0

v0.2.4

28 Nov 04:53
9633d30
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.2.3...v0.2.4

v0.2.3

07 Nov 23:57
c3b1d4c
Compare
Choose a tag to compare
  • Add type annotations

Full Changelog: v0.2.2...v0.2.3

v0.2.2

07 Nov 23:09
77f9ea3
Compare
Choose a tag to compare
  • Add approx_df to public API

Full Changelog: v0.2.1...v0.2.2

v0.2.1

02 Nov 16:09
e3c7455
Compare
Choose a tag to compare
  • More efficient nearest neighbor search
  • Correct slopes for linear interpolation in 2d, 3d
  • Fix for cubic2 splines in 2d and 3d
    Forward and reverse mode AD now fully working and tested

Full Changelog: v0.2.0...v0.2.1

v0.2.0

20 Oct 23:54
02c1704
Compare
Choose a tag to compare
  • Adds convenience classes for spline interpolation that cache the derivative calculation.