Click or drag to resize

PartialDerivativesSum.GetPartialDerivativesEvaluator Method

Gets an evaluator that calculates the partial derivatives created from summing the partials of the objects in PartialsToSum.

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public PartialDerivativesEvaluator GetPartialDerivativesEvaluator(
	IList<IPartialDifferentiable> independentVariables,
	EvaluatorGroup group
)

Parameters

independentVariables
Type: System.Collections.Generic.IList<IPartialDifferentiable>
The list of IPartialDifferentiable representing the independent variables that the created partial derivative evaluator calculates partials with respect to.
group
Type: AGI.Foundation.EvaluatorGroup
The evaluator group to contain the evaluator.

Return Value

Type: PartialDerivativesEvaluator
The PartialDerivativesEvaluator.

Implements

IPartialDifferentiable.GetPartialDerivativesEvaluator(IList<IPartialDifferentiable>, EvaluatorGroup)
Exceptions
ExceptionCondition
ArgumentNullException Thrown when the parameter independentVariables or group is null.
PropertyInvalidException Thrown when Subject is null or if PartialsToSum contains zero items of if any of the items is null or does not implement IPartialDifferentiable.
See Also