Skip to content

Releases: SciML/DataInterpolations.jl

v8.3.1

15 Jul 15:00
c181596
Compare
Choose a tag to compare

DataInterpolations v8.3.1

Diff since v8.3.0

Merged pull requests:

v8.3.0

14 Jul 22:38
b60cb77
Compare
Choose a tag to compare

DataInterpolations v8.3.0

Diff since v8.2.0

Merged pull requests:

v8.2.0

12 Jul 11:14
cc2861e
Compare
Choose a tag to compare

DataInterpolations v8.2.0

Diff since v8.1.0

Merged pull requests:

v8.1.0

25 Jun 15:00
2834eac
Compare
Choose a tag to compare

DataInterpolations v8.1.0

Diff since v8.0.1

Merged pull requests:

  • Add SmoothedConstantInterpolation (#367) (@SouthEndMusic)
  • use isequal instead of == in safe_diff (#428) (@vyudu)
  • build(deps): bump JuliaRegistries/TagBot from 1.20.1 to 1.20.2 (#430) (@dependabot[bot])
  • Fix get_transition_ts (#432) (@SouthEndMusic)
  • Add optional extrapolation methods (#433) (@simulutions)
  • CompatHelper: bump compat for "ModelingToolkit" to "10.1" for package docs (#435) (@github-actions[bot])

Closed issues:

  • Smooth equivalent of ConstantInterpolation in terms of integral (#364)
  • New release to use SmoothedConstantInterpolation (#437)

v8.0.1

30 Apr 14:45
a52163d
Compare
Choose a tag to compare

DataInterpolations v8.0.1

Diff since v8.0.0

Merged pull requests:

Closed issues:

  • Potentially imrpvoe plotting recepie (#403)
  • Smooth arclength interpolation second order derivatives (#410)
  • Add A way to get the length of the curve (#412)
  • PCHIPInterpolation endpoints differences (#415)

v8.0.0

22 Mar 11:49
d188ecd
Compare
Choose a tag to compare

DataInterpolations v8.0.0

Diff since v7.2.0

Breaking changes

  • Dimension type parameter was removed.

Merged pull requests:

Closed issues:

  • Second derivatives are very noisy near endpoints (#370)
  • Error when integrating with cache_parameters = true (#390)
  • PCHIPInterpolation method does not produce the same results as other interpolation libraries (#399)

v7.2.0

07 Feb 15:51
fd585f2
Compare
Choose a tag to compare

DataInterpolations v7.2.0

Diff since v7.1.0

Merged pull requests:

Closed issues:

  • Broken extrapolation with integer interpolation (#378)
  • AkimaInterpolation of Float32 data results in Float64 values when interpolating (#382)
  • Integrals with incorrect dimensions for Unitful input (#385)
  • Inconsistent output eltype when evaluating on vectors (#388)
  • Regressions of ConstantInterpolation reported by JET.@report_opt (#389)

v7.1.0

31 Jan 10:19
1d10244
Compare
Choose a tag to compare

DataInterpolations v7.1.0

Diff since v7.0.1

Merged pull requests:

Closed issues:

  • Does not support gradient calculation of 2D interpolation results (#371)

v7.0.1

17 Jan 13:29
c4de75e
Compare
Choose a tag to compare

DataInterpolations v7.0.1

Diff since v7.0.0

Merged pull requests:

  • CompatHelper: bump compat for "DataInterpolations" to "7.0" for package docs (#374) (@github-actions[bot])
  • Correct typo (#375) (@hersle)
  • Fix ConstantInterpolation integer extrapolation (#376) (@SouthEndMusic)
  • Bump Project.toml to 7.0.1 (#377) (@DaniGlez)

Closed issues:

  • 1-point ConstantInterpolation gets BoundsError with cache_parameters (#373)

v7.0.0

08 Jan 17:02
f5763e0
Compare
Choose a tag to compare

DataInterpolations v7.0.0

Diff since v6.6.0

Breaking changes

  • extrapolate keyword argument was removed. A new keyword argument extrapolation was added. The reason for this is the previous argument was a Boolean, whether to extrapolate or not, while the new argument is an extrapolation choice, i.e. how to extrapolate, like constant extrapolation, linear, continuing the polynomial, etc. See the docs for the choices.

Merged pull requests:

Closed issues:

  • Configurable extrapolation behavior (#355)
  • Add extrapolation types periodic and reflection (#360)
  • Error rather than NaN result if Unitful arrays passed to LinearInterpolation (#365)