Automatic Differentiation

From HaskellWiki
Revision as of 23:06, 4 April 2009 by Lemming (talk | contribs) (old thread on Haskell Cafe)
Jump to navigation Jump to search

Implementations:

Power Series

You may count arithmetic with power series also as Automatic Differentiation, since this means just working with all derivatives simultaneously.

Implementation with Haskell 98 type classes: http://darcs.haskell.org/htam/src/PowerSeries/Taylor.hs

With advanced type classes in Numeric Prelude: http://hackage.haskell.org/packages/archive/numeric-prelude/0.0.5/doc/html/MathObj-PowerSeries.html

See also