Click or drag to resize

DoubleSampleSuggestionCallback Delegate

A callback that is invoked to determine the next Variable at which DoubleFunctionExplorer samples a function.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public delegate double DoubleSampleSuggestionCallback(
	double intervalStart,
	double intervalStop,
	double lastSample
)

Parameters

intervalStart
Type: SystemDouble
The beginning of the overall interval being evaluated.
intervalStop
Type: SystemDouble
The end of the overall interval being evaluated.
lastSample
Type: SystemDouble
The last Variable that was sampled.

Return Value

Type: Double
The next Variable to sample.
See Also