diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-05-21 13:10:15 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-05-21 13:10:15 +0200 |
commit | 3916d70b9d170633c6122cb3c46000f0b3f32018 (patch) | |
tree | 8973c1b44200fac8c7465aa22e7bde80f3f3fced /packages/base/src/Numeric/LinearAlgebra | |
parent | 197e88c3b56d28840217010a2871c6ea3a4dd1a4 (diff) |
Numeric.LinearAlgebra.Compat
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Compat.hs | 25 | ||||
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Random.hs | 3 |
2 files changed, 27 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Compat.hs b/packages/base/src/Numeric/LinearAlgebra/Compat.hs new file mode 100644 index 0000000..7b43365 --- /dev/null +++ b/packages/base/src/Numeric/LinearAlgebra/Compat.hs | |||
@@ -0,0 +1,25 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | {- | | ||
3 | Module : Numeric.LinearAlgebra.Compat | ||
4 | Copyright : (c) Alberto Ruiz 2006-14 | ||
5 | License : BSD3 | ||
6 | Maintainer : Alberto Ruiz | ||
7 | Stability : provisional | ||
8 | |||
9 | -} | ||
10 | ----------------------------------------------------------------------------- | ||
11 | {-# OPTIONS_HADDOCK hide #-} | ||
12 | |||
13 | module Numeric.LinearAlgebra.Compat ( | ||
14 | module Numeric.Container, | ||
15 | module Numeric.LinearAlgebra.Algorithms, | ||
16 | meanCov | ||
17 | ) where | ||
18 | |||
19 | import Numeric.Container | ||
20 | import Numeric.LinearAlgebra.Algorithms | ||
21 | import Numeric.Matrix() | ||
22 | import Numeric.Vector() | ||
23 | import Numeric.LinearAlgebra.Util(meanCov) | ||
24 | |||
25 | |||
diff --git a/packages/base/src/Numeric/LinearAlgebra/Random.hs b/packages/base/src/Numeric/LinearAlgebra/Random.hs index 7afd658..b66988e 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Random.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Random.hs | |||
@@ -20,7 +20,8 @@ module Numeric.LinearAlgebra.Random ( | |||
20 | ) where | 20 | ) where |
21 | 21 | ||
22 | import Numeric.Vectorized | 22 | import Numeric.Vectorized |
23 | import Numeric.Container | 23 | import Data.Packed |
24 | import Data.Packed.Internal.Numeric | ||
24 | import Numeric.LinearAlgebra.Algorithms | 25 | import Numeric.LinearAlgebra.Algorithms |
25 | import System.Random(randomIO) | 26 | import System.Random(randomIO) |
26 | 27 | ||