GoldenSectionFindExtremumFindExtremum 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: 24.2.419.0 (24.2.419.0)
Syntax public 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