RootFinding Module
Statistics for determining the root of non-linear equations.
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
|
|
Full Usage:
secant n N f x0 x1 x2
Parameters:
int
N : int
f : float -> float
x0 : float
x1 : float
x2 : 'a
Returns: float
|