NumericallyComputedMultivariableFunctionDerivativeResults Constructor |
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 NumericallyComputedMultivariableFunctionDerivativeResults(
SolvableMultivariableFunctionResults value,
double[,] jacobian,
SolvableMultivariableFunctionResults[] perturbedResultsUsedToComputeDerivative,
bool validPerturbations,
FiniteDifferenceMethod differenceMethod
)
Public Sub New (
value As SolvableMultivariableFunctionResults,
jacobian As Double(,),
perturbedResultsUsedToComputeDerivative As SolvableMultivariableFunctionResults(),
validPerturbations As Boolean,
differenceMethod As FiniteDifferenceMethod
)
public:
NumericallyComputedMultivariableFunctionDerivativeResults(
SolvableMultivariableFunctionResults^ value,
array<double,2>^ jacobian,
array<SolvableMultivariableFunctionResults^>^ perturbedResultsUsedToComputeDerivative,
bool validPerturbations,
FiniteDifferenceMethod differenceMethod
)
new :
value : SolvableMultivariableFunctionResults *
jacobian : float[,] *
perturbedResultsUsedToComputeDerivative : SolvableMultivariableFunctionResults[] *
validPerturbations : bool *
differenceMethod : FiniteDifferenceMethod -> NumericallyComputedMultivariableFunctionDerivativeResults
Parameters
- value
- Type: AGI.Foundation.NumericalMethodsSolvableMultivariableFunctionResults
The value of the function at the nominal variable values. This may be
if the routine that computed these results did not compute the value of the function. - jacobian
- Type: SystemDouble
The Jacobian of the function evaluated at the variables of the value. - perturbedResultsUsedToComputeDerivative
- Type: AGI.Foundation.NumericalMethodsSolvableMultivariableFunctionResults
The evaluations of the function used to compute the jacobian. - validPerturbations
- Type: SystemBoolean
If the perturbations of the variables were are valid. This may be
if the results of the function changed by too small of a value when the perturbations
were applied to the variables. - differenceMethod
- Type: AGI.Foundation.NumericalMethodsFiniteDifferenceMethod
What difference method was used to compute these results.
See Also