RootFinding Module
Statistics for determining the root of non-linear equations.
Nested modules
| Modules | Description |
|
|
Functions and values
| Function or value |
Description
|
Full Usage:
bisect n N f a b t
Parameters:
int
N : int
f : float -> float
a : float
b : float
t : float
Returns: float
|
Bisect method for finding root of non-linear equations.
|
Full Usage:
secant n N f x0 x1 x2
Parameters:
int
N : int
f : float -> float
x0 : float
x1 : float
x2 : 'a
Returns: float
|
Secant method for finding root of non-linear equations. This method is faster than bisection, but may not converge on a root.
|
bristlecone