Method | Description | |
---|---|---|
BinarySearch ( double>.Func |
Constructs a new Binary search algorithm.
|
|
Find ( double>.Func |
Finds a value of a function in the interval [a;b]
|
|
Find ( double value ) : int |
Attempts to find a root in the interval [a;b]
|
|
FindRoot ( ) : int |
Attempts to find a root in the interval [a;b]
|
public BinarySearch ( double>.Func |
||
function | double>.Func | The function to be searched. |
a | int | Start of search region. |
b | int | End of search region. |
return | System |
public static Find ( double>.Func |
||
function | double>.Func | The function to have its root computed. |
lowerBound | int | Start of search region. |
upperBound | int | End of search region. |
value | double | The value to be looked for in the function. |
return | int |