MultiFunctionMathFindGlobalMaximum Method (FuncIReadOnlyListDouble, Double, IReadOnlyListInterval) |
Finds the maximum of a function within the given volume.
Namespace:
Meta.Numerics.Analysis
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static MultiExtremum FindGlobalMaximum(
Func<IReadOnlyList<double>, double> function,
IReadOnlyList<Interval> volume
)
Public Shared Function FindGlobalMaximum (
function As Func(Of IReadOnlyList(Of Double), Double),
volume As IReadOnlyList(Of Interval)
) As MultiExtremum
public:
static MultiExtremum^ FindGlobalMaximum(
Func<IReadOnlyList<double>^, double>^ function,
IReadOnlyList<Interval>^ volume
)
static member FindGlobalMaximum :
function : Func<IReadOnlyList<float>, float> *
volume : IReadOnlyList<Interval> -> MultiExtremum
Parameters
- function
- Type: SystemFuncIReadOnlyListDouble, Double
The function. - volume
- Type: System.Collections.GenericIReadOnlyListInterval
The volume to search.
Return Value
Type:
MultiExtremumThe global maximum.
See Also