Adds an equality constraint of the form coefficients'x = rightHandSide

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void AddEqualityConstraint(
	DoubleVector coefficients,
	double rightHandSide
)
Visual Basic (Declaration)
Public Sub AddEqualityConstraint ( _
	coefficients As DoubleVector, _
	rightHandSide As Double _
)
Visual C++
public:
void AddEqualityConstraint(
	DoubleVector^ coefficients, 
	double rightHandSide
)

Parameters

coefficients
Type: CenterSpace.NMath.Core..::.DoubleVector
Vector of coefficients.
rightHandSide
Type: System..::.Double
The right hand side of the equality.

See Also