SolvableMultivariableFunctionResults Constructor (Double, Double) | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic SolvableMultivariableFunctionResults(
	double[] variableUsed,
	double[] constraintResults
)
Public Sub New ( 
	variableUsed As Double(),
	constraintResults As Double()
)
public:
SolvableMultivariableFunctionResults(
	array<double>^ variableUsed, 
	array<double>^ constraintResults
)
new : 
        variableUsed : float[] * 
        constraintResults : float[] -> SolvableMultivariableFunctionResultsParameters
- variableUsed
 - Type: SystemDouble
The values of the variables that were used to compute the
            function.  This should just be the variables
            passed into the Evaluate method. - constraintResults
 - Type: SystemDouble
The value of the constraints as computed by a SolvableMultivariableFunction. 
See Also