Click or drag to resize
Accord.NET (logo)

QuadraticObjectiveFunctionAddition Operator

Adds two quadratic objective functions together by linearly combining the individual terms.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static QuadraticObjectiveFunction operator +(
	QuadraticObjectiveFunction a,
	QuadraticObjectiveFunction b
)
Request Example View Source

Parameters

a
Type: Accord.Math.OptimizationQuadraticObjectiveFunction
The first quadratic objective function.
b
Type: Accord.Math.OptimizationQuadraticObjectiveFunction
The second quadratic objective function.

Return Value

Type: QuadraticObjectiveFunction
Returns a new QuadraticObjectiveFunction where the resultant terms are the sum of the individuals.
See Also