Property | Type | Description |
---|
Method | Description | |
---|---|---|
BrentSearch ( double>.Func |
Constructs a new Brent search algorithm.
|
|
Find ( double value ) : bool |
Attempts to find a value in the interval [a;b]
|
|
Find ( double>.Func |
Finds a value of a function in the interval [a;b]
|
|
FindRoot ( ) : bool |
Attempts to find a root in the interval [a;b]
|
|
FindRoot ( double>.Func |
Finds the root of a function in the interval [a;b]
|
|
Maximize ( ) : bool |
Finds the maximum of the function in the interval [a;b]
|
|
Maximize ( double>.Func |
Finds the maximum of a function in the interval [a;b]
|
|
Minimize ( ) : bool |
Finds the minimum of the function in the interval [a;b]
|
|
Minimize ( double>.Func |
Finds the minimum of a function in the interval [a;b]
|
public BrentSearch ( double>.Func |
||
function | double>.Func | The function to be searched. |
a | double | Start of search region. |
b | double | End of search region. |
return | System |
public static Find ( double>.Func |
||
function | double>.Func | The function to have its root computed. |
value | double | The value to be looked for in the function. |
lowerBound | double | Start of search region. |
upperBound | double | End of search region. |
tol | double | The tolerance for determining the solution. |
return | double |
public static FindRoot ( double>.Func |
||
function | double>.Func | The function to have its root computed. |
lowerBound | double | Start of search region. |
upperBound | double | End of search region. |
tol | double | The tolerance for determining the solution. |
return | double |
public static Maximize ( double>.Func |
||
function | double>.Func | The function to be maximized. |
lowerBound | double | Start of search region. |
upperBound | double | End of search region. |
tol | double | The tolerance for determining the solution. |
return | double |
public static Minimize ( double>.Func |
||
function | double>.Func | The function to be minimized. |
lowerBound | double | Start of search region. |
upperBound | double | End of search region. |
tol | double | The tolerance for determining the solution. |
return | double |