Skip to content

Commit 1704d32

Browse files
committed
doc
1 parent ffcfd65 commit 1704d32

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- add extrapolation
88
- add not-a-knot boundary condition
99
- add clamped boundary condition
10+
- add periodic boundary condition
1011
- make not-a-knot boundary condition the default
1112
- allow any first or second derivative as boundary condition
1213
- fix typo `Biliniar` -> `Bilinear`

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ndarray-interp"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Interpolation package for ndarray"
@@ -13,7 +13,7 @@ categories = ["science", "algorithms", "mathematics"]
1313

1414
[dependencies]
1515
ndarray = "0.15"
16-
num-traits = {version = "0.2"}
16+
num-traits = "0.2"
1717
thiserror = "1.0"
1818

1919
[dev-dependencies]

src/interp1d/strategies/cubic_spline.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ use super::{Interp1DStrategy, Interp1DStrategyBuilder};
1515

1616
const AX0: Axis = Axis(0);
1717

18+
/// Marker trait that is implemented for anithing that satisfies
19+
/// the trait bounds required to be used as an element in the QubicSpline
20+
/// strategy.
1821
pub trait SplineNum:
1922
Debug
2023
+ Num

0 commit comments

Comments
 (0)