DerivativeCalculationMethod#
- class ansys.stk.core.stkobjects.astrogator.DerivativeCalculationMethod#
IntEnum
Overview#
|
Forward Difference - ((f(x + delta) - f(x))/ delta). |
|
Central Difference - ((f(x + delta) - f(x - delta)) / 2delta). |
|
Signed Difference - if x is positive, use the forward difference; if x is negative, use the backward difference. |
Import detail#
from ansys.stk.core.stkobjects.astrogator import DerivativeCalculationMethod