DifferencesDirection Enumeration

Enumerates the possible values that specify the interval to be used in numerical differentiation.

DefinitionPermalink

Namespace: Numerics.NET.Calculus
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public enum DifferencesDirection

RemarksPermalink

Different schemes exist to calculate numerical derivatives using points only to the left, only to the right, and on both sides of the target point.

MembersPermalink

Backward0 Only function values at the target point and to the left of the target point are used.
Central1 Function values at the target point and on both sides of the target point are used.
Forward2 Only function values at the target point and to the right of the target point are used.

See AlsoPermalink