Differences Direction Enumeration
Enumerates the possible values that specify the interval
to be used in numerical differentiation.
Definition
Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum DifferencesDirectionRemarks
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.
Members
| Backward | 0 | Only function values at the target point and to the left of the target point are used. |
| Central | 1 | Function values at the target point and on both sides of the target point are used. |
| Forward | 2 | Only function values at the target point and to the right of the target point are used. |