exp -package:numeric-prelude

C expressions.
Differentiable logging exponent function.
Natural logarithm differentiable function.

Examples of usage

>>> import Prelude (Float)

>>> import InfBackprop (call, derivative)

>>> call exp 2
7.38905609893065
>>> import Debug.SimpleExpr.Expr (variable)

>>> x = variable "x"

>>> derivative exp x
1·exp(x)
A Haskell expression.
Haskell expressions.
Kind of type-level expressions indexed by their result type.
Type class implementing exponentiation with explicitly resizing results.