SolvableMultivariableFunctionResults Constructor (Double, Double) |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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[] -> SolvableMultivariableFunctionResults
Parameters
- 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