Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static MultidimensionalOptimizer GetMaximizer(
Expression<Func<Vector<double>, double>> objectiveFunction
)
Public Shared Function GetMaximizer (
objectiveFunction As Expression(Of Func(Of Vector(Of Double), Double))
) As MultidimensionalOptimizer
public:
static MultidimensionalOptimizer^ GetMaximizer(
Expression<Func<Vector<double>^, double>^>^ objectiveFunction
)
static member GetMaximizer :
objectiveFunction : Expression<Func<Vector<float>, float>> -> MultidimensionalOptimizer
Parameters
- objectiveFunction
- Type: System.Linq.ExpressionsExpressionFuncVectorDouble, Double
A lambda expression that represents a multivariate function that specifies the function on the left-hand
side of the equation.
Return Value
Type:
MultidimensionalOptimizerAn
MultidimensionalOptimizer object that is set up to solve an equation for the specifed target function.
Use this method when you have very little information about the location of the maximum, but you need more control
over the solution process. For example, you may want to specify a different RelativeTolerance.
Reference