From 0fa0231c77e9aa01a28d0a2e117008d166d5c989 Mon Sep 17 00:00:00 2001 From: Rory Conlin Date: Mon, 4 Mar 2024 20:51:54 -0500 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6b626b..2f88bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Changelog ========= +- Adds a number of classes that replicate most of the functionality of the +corresponding classes from scipy.interpolate : + - ``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. +- Method ``"monotonic"`` now works in 2D and 3D, where it will preserve monotonicity +with respect to each coordinate individually. + + v0.2.4 ------ - Fixes for scalar valued query points