Click or drag to resize

PartialDerivativesFixedCreatePartialDerivativesWithRespectToNothing Method

Creates a new instance that represents the partials of an entity with respect to nothing. This takes the form of a PartialDerivativesFixed where the Subject is the given partial, the Dependencies list is empty, and the PartialDerivatives are a matrix with the RowDimension of the given partial and a ColumnDimension of zero.

Namespace:  AGI.Foundation.NumericalMethods.Advanced
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public static PartialDerivativesFixed CreatePartialDerivativesWithRespectToNothing(
	IPartialDifferentiable partial
)

Parameters

partial
Type: AGI.Foundation.NumericalMethods.AdvancedIPartialDifferentiable
The partial to use to create the Identity partial derivatives with respect to itself.

Return Value

Type: PartialDerivativesFixed
A PartialDerivativesFixed with the given partial as the DependentVariable and an empty list of IndependentVariables.
See Also