enum GSL::Diff::Direction
Overview
This enum represents algorithm of Numerical Differentiation
Defined in:
gsl/maths/analysis/diff.crEnum Members
-
Central =
0 -
Function will be evaluated at points
x-step,x-step/2,x+step/2andx+stepThis is default option -
Forward =
1 -
Function will be evaluated at points
x+step/4,x+step/2,x+3*step/4andx+stepIt is useful when function is not defined at points <= x -
Backward =
2 -
Equivalent to
Forwardbut with negativestep