Skip to content

Commit

Permalink
Merge branch 'release' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Axect committed Jun 19, 2024
2 parents 5fad053 + 220161c commit e62aba7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "peroxide"
version = "0.37.5"
version = "0.37.6"
authors = ["axect <[email protected]>"]
edition = "2018"
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
Expand Down
15 changes: 15 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Release 0.37.6 (2024-06-19)

## Huge Spline Change

- Generic Spline trait
- `Spline<T>`: desired output type is `T`
- Split `PolynomialSpline` from `Spline`
- `CubicSpline` & `CubicHermiteSpline` are now `PolynomialSpline`
- Implement `Spline<f64>` for `PolynomialSpline`
- Implement B-Spline
- `BSpline { degree: usize, knots: Vec<f64>, control_points: Vec<Vec<f64>> }`
- `BSpline::open(degree, knots, control_points)` : Open B-Spline
- `BSpline::clamped(degree, knots, control_points)` : Clamped B-Spline
- Implement `Spline<(f64, f64)>` for `BSpline`

# Release 0.37.5 (2024-06-10)

- More generic & stable root finding macros (except `Newton`)
Expand Down

0 comments on commit e62aba7

Please sign in to comment.