Click or drag to resize

NumericallyComputedMultivariableFunctionDerivativeResults Constructor

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public NumericallyComputedMultivariableFunctionDerivativeResults(
	SolvableMultivariableFunctionResults value,
	double[,] jacobian,
	SolvableMultivariableFunctionResults[] perturbedResultsUsedToComputeDerivative,
	bool validPerturbations,
	FiniteDifferenceMethod differenceMethod
)

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