Click or drag to resize

GridDescriptiveStatisticsMinimumFigureOfMeritT Method

Computes the minimum of a given figure of merit over the grid.

Namespace:  AGI.Foundation.Coverage.FigureOfMerit
Assembly:  AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static T MinimumFigureOfMerit<T>(
	IEnumerable<CoverageGridPointWithResults> gridPoints,
	FigureOfMerit<T> function
)
where T : Object, IComparable<T>

Parameters

gridPoints
Type: System.Collections.GenericIEnumerableCoverageGridPointWithResults
The coverage grid points. These points must contain results.
function
Type: AGI.Foundation.Coverage.FigureOfMeritFigureOfMeritT
The figure of merit.

Type Parameters

T
The type of value produced by the figure of merit.

Return Value

Type: T
The minimum of the given figure of merit.
See Also