Skip to content

Commit a2be142

Browse files
committed
Merge branch 'release' into dev
2 parents ab48eb6 + 8092adc commit a2be142

File tree

4 files changed

+35
-21
lines changed

4 files changed

+35
-21
lines changed

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peroxide"
3-
version = "0.39.7"
3+
version = "0.39.8"
44
authors = ["axect <[email protected]>"]
55
edition = "2018"
66
description = "Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax"
@@ -38,7 +38,6 @@ peroxide-ad = "0.3"
3838
peroxide-num = "0.1"
3939
anyhow = "1.0"
4040
paste = "1.0"
41-
#num-complex = "0.3"
4241
netcdf = { version = "0.7", optional = true, default-features = false }
4342
pyo3 = { version = "0.22", optional = true, features = [
4443
"auto-initialize",

README.md

Lines changed: 27 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,32 @@ Rust numeric library contains linear algebra, numerical analysis, statistics and
1111

1212
## Table of Contents
1313

14-
- [Why Peroxide?](#why-peroxide)
15-
- [1. Customize features](#1-customize-features)
16-
- [2. Easy to optimize](#2-easy-to-optimize)
17-
- [3. Friendly syntax](#3-friendly-syntax)
18-
- [4. Can choose two different coding styles](#4-can-choose-two-different-coding-styles)
19-
- [5. Batteries included](#5-batteries-included)
20-
- [6. Compatible with Mathematics](#6-compatible-with-mathematics)
21-
- [7. Written in Rust](#7-written-in-rust)
22-
- [Latest README version](#latest-readme-version)
23-
- [Pre-requisite](#pre-requisite)
24-
- [Install](#install)
25-
- [Useful tips for features](#useful-tips-for-features)
26-
- [Module Structure](#module-structure)
27-
- [Documentation](#documentation)
28-
- [Examples](#examples)
29-
- [Release Info](#release-info)
30-
- [Contributes Guide](#contributes-guide)
31-
- [LICENSE](#license)
32-
- [TODO](#todo)
14+
- [Peroxide](#peroxide)
15+
- [Table of Contents](#table-of-contents)
16+
- [Why Peroxide?](#why-peroxide)
17+
- [1. Customize features](#1-customize-features)
18+
- [2. Easy to optimize](#2-easy-to-optimize)
19+
- [3. Friendly syntax](#3-friendly-syntax)
20+
- [4. Can choose two different coding styles.](#4-can-choose-two-different-coding-styles)
21+
- [5. Batteries included](#5-batteries-included)
22+
- [6. Compatible with Mathematics](#6-compatible-with-mathematics)
23+
- [7. Written in Rust](#7-written-in-rust)
24+
- [Latest README version](#latest-readme-version)
25+
- [Pre-requisite](#pre-requisite)
26+
- [Install](#install)
27+
- [Basic Installation](#basic-installation)
28+
- [Featured Installation](#featured-installation)
29+
- [Available Features](#available-features)
30+
- [Install Examples](#install-examples)
31+
- [Useful tips for features](#useful-tips-for-features)
32+
- [Module Structure](#module-structure)
33+
- [Documentation](#documentation)
34+
- [Examples](#examples)
35+
- [Release Info](#release-info)
36+
- [Contributes Guide](#contributes-guide)
37+
- [LICENSE](#license)
38+
- [TODO](#todo)
39+
- [Cite Peroxide](#cite-peroxide)
3340

3441
## Why Peroxide?
3542

@@ -223,6 +230,7 @@ Peroxide can do many things.
223230
- Beta
224231
- Student's-t
225232
- Weighted Uniform
233+
- LogNormal
226234
- RNG algorithms
227235
- Acceptance Rejection
228236
- Marsaglia Polar

RELEASES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Release 0.39.8 (2025-06-23)
2+
3+
- Implement `LogNormal` distribution
4+
- `LogNormal(mu: f64, sigma: f64)`
5+
- Fix sampling method for `Gamma`
6+
17
# Release 0.39.7 (2025-05-27)
28

39
- Add some methods for `DataFrame`

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
//! - Gamma
2828
//! - Beta
2929
//! - Student's t
30+
//! - LogNormal
3031
//! - [Special functions](special/function/index.html) (Using `puruspe` crate)
3132
//! - Gaussian
3233
//! - Gamma

0 commit comments

Comments
 (0)