ndiff   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/math.xtm

Implementation

(bind-func ndiff
  "numeric differentiation - central diff"
  (lambda (f:[double,double]* x dx)
    (/ (- (f (+ x (/ dx 2.0)))
          (f (- x (/ dx 2.0))))
       dx)))


Back to Index

Similar Entries