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: 25.1.421.0 (25.1.421.0)
Syntax
public NumericallyComputedMultivariableFunctionDerivativeResults(
	SolvableMultivariableFunctionResults value,
	double[,] jacobian,
	SolvableMultivariableFunctionResults[] perturbedResultsUsedToComputeDerivative,
	bool validPerturbations,
	FiniteDifferenceMethod differenceMethod
)

Parameters

value
Type: AGI.Foundation.NumericalMethods.SolvableMultivariableFunctionResults
The value of the function at the nominal variable values. This may be null if the routine that computed these results did not compute the value of the function.
jacobian
Type:System.Double[,]
The Jacobian of the function evaluated at the variables of the value.
perturbedResultsUsedToComputeDerivative
Type:AGI.Foundation.NumericalMethods.SolvableMultivariableFunctionResults[]
The evaluations of the function used to compute the jacobian.
validPerturbations
Type: System.Boolean
If the perturbations of the variables were are valid. This may be false 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.NumericalMethods.FiniteDifferenceMethod
What difference method was used to compute these results.
See Also