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.2.419.0 (24.2.419.0)
Syntax public static T MinimumFigureOfMerit<T>(
IEnumerable<CoverageGridPointWithResults> gridPoints,
FigureOfMerit<T> function
)
where T : Object, IComparable<T>
Public Shared Function MinimumFigureOfMerit(Of T As {Object, IComparable(Of T)}) (
gridPoints As IEnumerable(Of CoverageGridPointWithResults),
function As FigureOfMerit(Of T)
) As T
public:
generic<typename T>
where T : Object, IComparable<T>
static T MinimumFigureOfMerit(
IEnumerable<CoverageGridPointWithResults^>^ gridPoints,
FigureOfMerit<T>^ function
)
static member MinimumFigureOfMerit :
gridPoints : IEnumerable<CoverageGridPointWithResults> *
function : FigureOfMerit<'T> -> 'T when 'T : Object and 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:
TThe minimum of the given figure of merit.
See Also