Skip to content

Commit cd741c3

Browse files
committed
Fix documentation of Ver 0.25.3
1 parent e3596d7 commit cd741c3

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,11 @@ Peroxide can do many things.
157157
* Gauss Legendre 4th order
158158
* Numerical Integration
159159
* Gauss-Legendre Quadrature
160+
* Root Finding
161+
* Bisection
162+
* False Position (Regula Falsi)
163+
* Secant
164+
* Newton
160165
* Statistics
161166
* More easy random with `rand` crate
162167
* Ordered Statistics
@@ -279,6 +284,7 @@ Corresponding to `0.25.0`
279284
- [newton.rs](src/numerical/newton.rs) : Newton's Method
280285
- [ode.rs](src/numerical/ode.rs) : Main ODE solver with various algorithms
281286
- [optimize.rs](src/numerical/optimize.rs) : Non-linear regression
287+
- [root.rs](src/numerical/root.rs) : Root finding
282288
- [spline.rs](src/numerical/spline.rs) : Natural Spline
283289
- [utils.rs](src/numerical/utils.rs) : Utils to do numerical things (e.g. jacobian)
284290
- __prelude__ : Prelude for using simple
@@ -311,6 +317,7 @@ Corresponding to `0.25.0`
311317
- [mutable.rs](src/traits/mutable.rs) : Mutable toolbox
312318
- [num.rs](src/traits/num.rs) : Number, Real and more operations
313319
- [pointer.rs](src/traits/pointer.rs) : Matrix pointer and Vector pointer for convenience
320+
- [stable.rs](src/traits/stable.rs) : Implement nightly-only features in stable
314321
- __util__
315322
- [mod.rs](src/util/mod.rs)
316323
- [api.rs](src/util/api.rs) : Matrix constructor for various language style

src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
//! * [Optimization](numerical/optimize/index.html)
4444
//! * Gradient Descent
4545
//! * Levenberg-Marquardt
46+
//! * [Root Finding](numerical/root/index.html)
47+
//! * Bisection
48+
//! * False Position (Regula falsi)
49+
//! * Secant
50+
//! * Newton
4651
//! * [Differential Equations](numerical/ode/index.html)
4752
//! * Explicit
4853
//! * Runge-Kutta 4th order
@@ -68,6 +73,7 @@
6873
//! * [Mutable tools](traits/mutable/index.html)
6974
//! * [Number & Real](traits/num/index.html)
7075
//! * [Pointer](traits/pointer/index.html)
76+
//! * [Stable](traits/stable/index.html)
7177
//!
7278
//! ## Quick Start
7379
//!

src/traits/stable.rs

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
//! Stable implementations for nightly-only features
2+
//!
3+
//! # Implemented List
4+
//!
5+
//! * `StableFn` : Make `FnOnce` to stable
6+
17
/// Stable Fn trait
28
///
39
/// # Description

0 commit comments

Comments
 (0)