1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! `nrfind` is a crate for finding the roots of arbitrary functions whose derivatives
//! are known by the Newton-Rahpson method.
//!
//! # Examples
//!
//! Here, `find_sqrt` is used to approximate the square root of 25.1 to within
//! 0.01, with a starting guess of 5, using at most 100 iterations of the NR
//! method.
//!
//! ```
//! use nrfind::find_sqrt;
//!
//! match find_sqrt(25.1, 5.0, 0.01, 100) {
//! Ok(v) => println!("sqrt(25.1) ~= {} within 0.01", v),
//! Err(v) => println!("Could not find sqrt(25.1) within 0.01; closest guess was {}.", v),
//! }
//! ```
//!
extern crate num;
use Float;
use ;
pub use find_sqrt;
/// A `NumericSolutionResult` is returned from the various `nrfind` functions.
/// An `Ok` value signifies a result that is within the given precision while an
/// `Err` result signifies a result that is not known to be sufficiently precise.
pub type NumericSolutionResult<T: Float + Div + Sub + PartialOrd> = ;
/// Uses the Newton-Raphson method to find roots for `function` given
/// that `derivative` is the first derivative of `function`.
/// If `max_iterations` is reached without the error falling below the given
/// `acceptable_err`, `nrfind` will return `None`.
///
/// This function can operate on any type that implements `Float`. That means
/// arbitrary-precision `BigRational` types from the `num` crate are acceptable.
///
/// # Examples
///
/// Here, `find_root` is used to find the root of the polynomial x^3 + x^2 + 1
/// to a precision of 0.1 in 18 iterations, staring from a very
/// inaccurate initial guess.
///
/// ```
/// use nrfind::find_root;
///
/// // The function x^3 + x^2 + 1
/// fn f(x: f64) -> f64 {
/// x.powi(3) + x.powi(2) + 1.0
/// }
///
/// // The derivative of f (3x^2 + 2x)
/// fn fd(x: f64) -> f64 {
/// (3.0 * x.powi(2)) + (2.0 * x)
/// }
///
/// let result = find_root(&f, &fd,
/// 100.0, // Starting guess
/// 0.1, // Precision
/// 18 // Iterations
/// ).unwrap();
/// let actual = -1.4656; // The correct answer
///
/// let difference = (result - actual).abs();
///
/// assert!(difference < 0.1);
/// ```
///