diff options
Diffstat (limited to 'packages/hmatrix/src/Numeric/Container.hs')
-rw-r--r-- | packages/hmatrix/src/Numeric/Container.hs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/hmatrix/src/Numeric/Container.hs b/packages/hmatrix/src/Numeric/Container.hs new file mode 100644 index 0000000..b6e797b --- /dev/null +++ b/packages/hmatrix/src/Numeric/Container.hs | |||
@@ -0,0 +1,23 @@ | |||
1 | ----------------------------------------------------------------------------- | ||
2 | {- | | ||
3 | Module : Numeric.Container | ||
4 | Copyright : (c) Alberto Ruiz 2006-14 | ||
5 | License : GPL | ||
6 | Maintainer : Alberto Ruiz | ||
7 | Stability : provisional | ||
8 | |||
9 | -} | ||
10 | ----------------------------------------------------------------------------- | ||
11 | |||
12 | module Numeric.Container ( | ||
13 | module Data.Packed.Numeric, | ||
14 | module Numeric.LinearAlgebra.IO, | ||
15 | module Numeric.LinearAlgebra.Random, | ||
16 | meanCov | ||
17 | ) where | ||
18 | |||
19 | import Data.Packed.Numeric | ||
20 | import Numeric.LinearAlgebra.IO | ||
21 | import Numeric.LinearAlgebra.Random hiding (Seed) | ||
22 | import Numeric.LinearAlgebra.Util(meanCov) | ||
23 | |||