summaryrefslogtreecommitdiff
path: root/examples/deriv.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-10-01 15:04:16 +0000
committerAlberto Ruiz <aruiz@um.es>2007-10-01 15:04:16 +0000
commitc99b8fd6e3f8a2fb365ec12baf838f864b118ece (patch)
tree11b5b8515861fe88d547253ae10c2182d5fadaf2 /examples/deriv.hs
parent768f08d4134a066d773d56a9c03ae688e3850352 (diff)
LinearAlgebra and GSL moved to Numeric
Diffstat (limited to 'examples/deriv.hs')
-rw-r--r--examples/deriv.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/deriv.hs b/examples/deriv.hs
index 472a284..c9456d1 100644
--- a/examples/deriv.hs
+++ b/examples/deriv.hs
@@ -1,6 +1,6 @@
1-- Numerical differentiation 1-- Numerical differentiation
2 2
3import GSL 3import Numeric.GSL
4 4
5d :: (Double -> Double) -> (Double -> Double) 5d :: (Double -> Double) -> (Double -> Double)
6d f x = fst $ derivCentral 0.01 f x 6d f x = fst $ derivCentral 0.01 f x