summaryrefslogtreecommitdiff
path: root/packages/base
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-06-05 16:43:01 +0200
committerAlberto Ruiz <aruiz@um.es>2015-06-05 16:43:01 +0200
commit13856329ed09cd9f70f03363895545a6ca83374c (patch)
tree732d4b495e98e0d4914a4edae89fe8df190da881 /packages/base
parentf8420df8e9f70c77a708a1eceef7340d300d4595 (diff)
move random
Diffstat (limited to 'packages/base')
-rw-r--r--packages/base/src/Internal/Random.hs (renamed from packages/base/src/Numeric/LinearAlgebra/Random.hs)12
1 files changed, 7 insertions, 5 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Random.hs b/packages/base/src/Internal/Random.hs
index b66988e..c44c272 100644
--- a/packages/base/src/Numeric/LinearAlgebra/Random.hs
+++ b/packages/base/src/Internal/Random.hs
@@ -10,7 +10,7 @@
10-- 10--
11----------------------------------------------------------------------------- 11-----------------------------------------------------------------------------
12 12
13module Numeric.LinearAlgebra.Random ( 13module Internal.Random (
14 Seed, 14 Seed,
15 RandDist(..), 15 RandDist(..),
16 randomVector, 16 randomVector,
@@ -19,11 +19,13 @@ module Numeric.LinearAlgebra.Random (
19 rand, randn 19 rand, randn
20) where 20) where
21 21
22import Numeric.Vectorized 22import Internal.Vectorized
23import Data.Packed 23import Internal.Vector
24import Data.Packed.Internal.Numeric 24import Internal.Matrix
25import Numeric.LinearAlgebra.Algorithms 25import Internal.Numeric
26import Internal.Algorithms
26import System.Random(randomIO) 27import System.Random(randomIO)
28import Data.Vector.Storable(fromList)
27 29
28 30
29-- | Obtains a matrix whose rows are pseudorandom samples from a multivariate 31-- | Obtains a matrix whose rows are pseudorandom samples from a multivariate