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[] -> SolvableMultivariableFunctionResults
Parameters
- variableUsed
- Type:System.Double[]
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:System.Double[]
The value of the constraints as computed by a SolvableMultivariableFunction.
See Also