diff options
author | Alberto Ruiz <aruiz@um.es> | 2012-03-14 10:21:48 +0100 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2012-03-14 10:21:48 +0100 |
commit | a71ec8e77f6fd8cfd78d7d9375516d6da02afd81 (patch) | |
tree | 4f211972f6a65376f900e1ce7296311d0fd16863 /lib/Numeric | |
parent | 93315bda7416acaea2eb35a0b3a8be100cb3b2c9 (diff) |
type hint and thanks
Diffstat (limited to 'lib/Numeric')
-rw-r--r-- | lib/Numeric/GSL/ODE.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Numeric/GSL/ODE.hs b/lib/Numeric/GSL/ODE.hs index 3994210..ab037bd 100644 --- a/lib/Numeric/GSL/ODE.hs +++ b/lib/Numeric/GSL/ODE.hs | |||
@@ -19,7 +19,7 @@ import Graphics.Plot | |||
19 | 19 | ||
20 | xdot t [x,v] = [v, -0.95*x - 0.1*v] | 20 | xdot t [x,v] = [v, -0.95*x - 0.1*v] |
21 | 21 | ||
22 | ts = linspace 100 (0,20) | 22 | ts = linspace 100 (0,20 :: Double) |
23 | 23 | ||
24 | sol = odeSolve xdot [10,0] ts | 24 | sol = odeSolve xdot [10,0] ts |
25 | 25 | ||