File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -157,6 +157,11 @@ Peroxide can do many things.
157
157
* Gauss Legendre 4th order
158
158
* Numerical Integration
159
159
* Gauss-Legendre Quadrature
160
+ * Root Finding
161
+ * Bisection
162
+ * False Position (Regula Falsi)
163
+ * Secant
164
+ * Newton
160
165
* Statistics
161
166
* More easy random with ` rand ` crate
162
167
* Ordered Statistics
@@ -279,6 +284,7 @@ Corresponding to `0.25.0`
279
284
- [ newton.rs] ( src/numerical/newton.rs ) : Newton's Method
280
285
- [ ode.rs] ( src/numerical/ode.rs ) : Main ODE solver with various algorithms
281
286
- [ optimize.rs] ( src/numerical/optimize.rs ) : Non-linear regression
287
+ - [ root.rs] ( src/numerical/root.rs ) : Root finding
282
288
- [ spline.rs] ( src/numerical/spline.rs ) : Natural Spline
283
289
- [ utils.rs] ( src/numerical/utils.rs ) : Utils to do numerical things (e.g. jacobian)
284
290
- __ prelude__ : Prelude for using simple
@@ -311,6 +317,7 @@ Corresponding to `0.25.0`
311
317
- [ mutable.rs] ( src/traits/mutable.rs ) : Mutable toolbox
312
318
- [ num.rs] ( src/traits/num.rs ) : Number, Real and more operations
313
319
- [ 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
314
321
- __ util__
315
322
- [ mod.rs] ( src/util/mod.rs )
316
323
- [ api.rs] ( src/util/api.rs ) : Matrix constructor for various language style
Original file line number Diff line number Diff line change 43
43
//! * [Optimization](numerical/optimize/index.html)
44
44
//! * Gradient Descent
45
45
//! * Levenberg-Marquardt
46
+ //! * [Root Finding](numerical/root/index.html)
47
+ //! * Bisection
48
+ //! * False Position (Regula falsi)
49
+ //! * Secant
50
+ //! * Newton
46
51
//! * [Differential Equations](numerical/ode/index.html)
47
52
//! * Explicit
48
53
//! * Runge-Kutta 4th order
68
73
//! * [Mutable tools](traits/mutable/index.html)
69
74
//! * [Number & Real](traits/num/index.html)
70
75
//! * [Pointer](traits/pointer/index.html)
76
+ //! * [Stable](traits/stable/index.html)
71
77
//!
72
78
//! ## Quick Start
73
79
//!
Original file line number Diff line number Diff line change
1
+ //! Stable implementations for nightly-only features
2
+ //!
3
+ //! # Implemented List
4
+ //!
5
+ //! * `StableFn` : Make `FnOnce` to stable
6
+
1
7
/// Stable Fn trait
2
8
///
3
9
/// # Description
You can’t perform that action at this time.
0 commit comments