| Safe Haskell | Safe |
|---|---|
| Language | Haskell98 |
Algebra.Differential
Synopsis
- class C a => C a where
- differentiate :: a -> a
Documentation
differentiate is a general differentation operation
It must fulfill the Leibnitz condition
differentiate (x * y) == differentiate x * y + x * differentiate y
Unfortunately, this scheme cannot be easily extended to more than two variables, e.g. MathObj.PowerSeries2.
Methods
differentiate :: a -> a #
Instances
| C a => C (T a) # | |
Defined in MathObj.PowerSeries Methods differentiate :: T a -> T a # | |
| C a => C (T a) # | |
Defined in MathObj.Polynomial Methods differentiate :: T a -> T a # | |
| C a => C (T a) # | |
Defined in MathObj.Wrapper.NumericPrelude Methods differentiate :: T a -> T a # | |