PartialDerivativesEvaluator Constructor (EvaluatorGroup, IListIPartialDifferentiable, IPartialDifferentiable, IListIPartialDifferentiable) |
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected PartialDerivativesEvaluator(
EvaluatorGroup group,
IList<IPartialDifferentiable> independentVariables,
IPartialDifferentiable partialsOf,
IList<IPartialDifferentiable> withRespectTo
)
Protected Sub New (
group As EvaluatorGroup,
independentVariables As IList(Of IPartialDifferentiable),
partialsOf As IPartialDifferentiable,
withRespectTo As IList(Of IPartialDifferentiable)
)
protected:
PartialDerivativesEvaluator(
EvaluatorGroup^ group,
IList<IPartialDifferentiable^>^ independentVariables,
IPartialDifferentiable^ partialsOf,
IList<IPartialDifferentiable^>^ withRespectTo
)
new :
group : EvaluatorGroup *
independentVariables : IList<IPartialDifferentiable> *
partialsOf : IPartialDifferentiable *
withRespectTo : IList<IPartialDifferentiable> -> PartialDerivativesEvaluator
Parameters
- group
- Type: AGI.FoundationEvaluatorGroup
The group that contains this evaluator. - independentVariables
- Type: System.Collections.GenericIListIPartialDifferentiable
The list of IPartialDifferentiable representing the independent variables of the partial derivative calculation.
- partialsOf
- Type: AGI.Foundation.NumericalMethods.AdvancedIPartialDifferentiable
The IPartialDifferentiable that the evaluated matrix will represent partials of. - withRespectTo
- Type: System.Collections.GenericIListIPartialDifferentiable
The list of IPartialDifferentiables
from the independentVariables that partialsOf has non-zero partials with respect to.
This could be an empty list, a subset of the independentVariables list, or the entire independentVariable list.
Do not include partialsOf in this list. If partialsOf is an independentVariable this base class constructor will perform the
necessary adjustments to account for the partial derivatives of the subject with respect to itself.
See Also