Gets or sets a delegate that computes the function values of the problem.
Namespace:
Extreme.Mathematics.Optimization
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Func<Vector<double>, Vector<double>, Vector<double>> ObjectiveFunction { get; set; }
Public Property ObjectiveFunction As Func(Of Vector(Of Double), Vector(Of Double), Vector(Of Double))
Get
Set
public:
property Func<Vector<double>^, Vector<double>^, Vector<double>^>^ ObjectiveFunction {
Func<Vector<double>^, Vector<double>^, Vector<double>^>^ get ();
void set (Func<Vector<double>^, Vector<double>^, Vector<double>^>^ value);
}
member ObjectiveFunction : Func<Vector<float>, Vector<float>, Vector<float>> with get, set
Property Value
Type:
FuncVectorDouble,
VectorDouble,
VectorDoubleA delegate that represents a multivariate function returning a matrix in its second argument.
The actual objective function is the sum of the squares of the elements of the vector
returned by this delegate.
Reference