BrentFindExtremumFindExtremum Method  | 
 
            Attempts to locate a local extremum in the provided number of iterations.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods.Advanced
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool FindExtremum(
	int iterations
)
Public Function FindExtremum ( 
	iterations As Integer
) As Boolean
public:
bool FindExtremum(
	int iterations
)
member FindExtremum : 
        iterations : int -> bool 
Parameters
- iterations
 - Type: SystemInt32
The allowed number of iterations. 
Return Value
Type: 
Boolean if the algorithm converged on an extremum; otherwise 
.
            
Remarks
            Using an iterations value of one in successive calls allows the algorithm to be iterated manually.
            
See Also