diff options
author | Alberto Ruiz <aruiz@um.es> | 2016-10-08 13:33:07 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2016-10-08 13:33:07 +0200 |
commit | 68bf5caf47cdeed5a91a6a28fb442a8ab7faf739 (patch) | |
tree | a2ac5d719c79063dd37a2bedc460dafdb9e40616 /packages | |
parent | 690de6c5a46d0b1d3f47d5c4b3bdef3d316e775e (diff) |
minor fix in documentation
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gsl/src/Numeric/GSL/ODE.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/gsl/src/Numeric/GSL/ODE.hs b/packages/gsl/src/Numeric/GSL/ODE.hs index 9e52873..c4fab85 100644 --- a/packages/gsl/src/Numeric/GSL/ODE.hs +++ b/packages/gsl/src/Numeric/GSL/ODE.hs | |||
@@ -17,7 +17,7 @@ A simple example: | |||
17 | @ | 17 | @ |
18 | import Numeric.GSL.ODE | 18 | import Numeric.GSL.ODE |
19 | import Numeric.LinearAlgebra | 19 | import Numeric.LinearAlgebra |
20 | import Numeric.LinearAlgebra.Util(mplot) | 20 | import Graphics.Plot(mplot) |
21 | 21 | ||
22 | xdot t [x,v] = [v, -0.95*x - 0.1*v] | 22 | xdot t [x,v] = [v, -0.95*x - 0.1*v] |
23 | 23 | ||