Skip to content

Commit

Permalink
RLSE: Ver 0.33.4
Browse files Browse the repository at this point in the history
* Implement `Statistics` for `WeightedUniform` (#55)
* New trait and utils for specific precision floating point
  • Loading branch information
Axect committed Jun 4, 2023
1 parent 67c62c2 commit e768d8e
Show file tree
Hide file tree
Showing 2 changed files with 12 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.33.3"
version = "0.33.4"
authors = ["axect <axect@outlook.kr>"]
edition = "2018"
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
Expand Down
11 changes: 11 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Release 0.33.4 (2023-06-04)

* Implement `Statistics` for `WeightedUniform` ([#55](https://github.com/Axect/Peroxide/pull/55)) (Thanks to [@samnaughtonb](https://github.com/samnaughtonb))
* New trait: `FloatWithPrecision`
* `fn round_with_precision(&self, precision: usize) -> Self`
* `fn floor_with_precision(&self, precision: usize) -> Self`
* `fn ceil_with_precision(&self, precision: usize) -> Self`
* New utils:
* `fn seq_with_precision(start, end, step, precision: usize) -> Vec<f64>`
* `fn linspace_with_precision(start, end, length, precision: usize) -> Vec<f64>`

# Release 0.33.2 (2023-04-03)

* Implement necessary traits for `ConfusionMatrix`
Expand Down

0 comments on commit e768d8e

Please sign in to comment.