diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-20 19:32:19 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-20 19:32:19 +0200 |
commit | 9412ef25f2a9d6f6ca233ef123a01c3f4145ffa4 (patch) | |
tree | b5c7ecd0534d0dc34242e53a3e66b87fc2ec0b0f /packages/hmatrix/src/Numeric/LinearAlgebra | |
parent | d0fc6c7192badfa6f03baf0e02e0cf2a73c3906b (diff) |
random numbers in base
Diffstat (limited to 'packages/hmatrix/src/Numeric/LinearAlgebra')
-rw-r--r-- | packages/hmatrix/src/Numeric/LinearAlgebra/Random.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/hmatrix/src/Numeric/LinearAlgebra/Random.hs b/packages/hmatrix/src/Numeric/LinearAlgebra/Random.hs index 0a82d3f..fa125a0 100644 --- a/packages/hmatrix/src/Numeric/LinearAlgebra/Random.hs +++ b/packages/hmatrix/src/Numeric/LinearAlgebra/Random.hs | |||
@@ -22,11 +22,11 @@ module Numeric.LinearAlgebra.Random ( | |||
22 | 22 | ||
23 | import Numeric.GSL.LinearAlgebra | 23 | import Numeric.GSL.LinearAlgebra |
24 | import Data.Packed.Numeric | 24 | import Data.Packed.Numeric |
25 | import Numeric.LinearAlgebra.Algorithms | 25 | import Numeric.LinearAlgebra.Base(Seed,RandDist(..),cholSH) |
26 | import System.Random(randomIO) | 26 | import System.Random(randomIO) |
27 | 27 | ||
28 | 28 | ||
29 | type Seed = Int | 29 | |
30 | 30 | ||
31 | -- | Obtains a matrix whose rows are pseudorandom samples from a multivariate | 31 | -- | Obtains a matrix whose rows are pseudorandom samples from a multivariate |
32 | -- Gaussian distribution. | 32 | -- Gaussian distribution. |