Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasBoss committed Feb 9, 2024
1 parent ffcfd65 commit 1704d32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- add extrapolation
- add not-a-knot boundary condition
- add clamped boundary condition
- add periodic boundary condition
- make not-a-knot boundary condition the default
- allow any first or second derivative as boundary condition
- fix typo `Biliniar` -> `Bilinear`
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-interp"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
license = "MIT"
description = "Interpolation package for ndarray"
Expand All @@ -13,7 +13,7 @@ categories = ["science", "algorithms", "mathematics"]

[dependencies]
ndarray = "0.15"
num-traits = {version = "0.2"}
num-traits = "0.2"
thiserror = "1.0"

[dev-dependencies]
Expand Down
3 changes: 3 additions & 0 deletions src/interp1d/strategies/cubic_spline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ use super::{Interp1DStrategy, Interp1DStrategyBuilder};

const AX0: Axis = Axis(0);

/// Marker trait that is implemented for anithing that satisfies
/// the trait bounds required to be used as an element in the QubicSpline
/// strategy.
pub trait SplineNum:
Debug
+ Num
Expand Down

0 comments on commit 1704d32

Please sign in to comment.