summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-06-05 17:08:57 +0200
committerAlberto Ruiz <aruiz@um.es>2015-06-05 17:08:57 +0200
commitaf8fdca4cfa709b60269e8209253df4297290b22 (patch)
tree71a3240b481b803f58589450d369d3f3db1db787 /packages/base/src/Numeric
parent2d06e1b8d3ed0c3174e484f5a24356c074d29db0 (diff)
remove intermediate reexport modules
Diffstat (limited to 'packages/base/src/Numeric')
-rw-r--r--packages/base/src/Numeric/Container.hs49
1 files changed, 0 insertions, 49 deletions
diff --git a/packages/base/src/Numeric/Container.hs b/packages/base/src/Numeric/Container.hs
deleted file mode 100644
index 48291a1..0000000
--- a/packages/base/src/Numeric/Container.hs
+++ /dev/null
@@ -1,49 +0,0 @@
1{-# OPTIONS_HADDOCK hide #-}
2
3module Numeric.Container(
4 module Data.Packed,
5 constant,
6 linspace,
7 diag,
8 ident,
9 ctrans,
10 Container(addConstant,add, sub, mul, equal,scaleRecip,divide),
11 scalar,
12 conj,
13 scale,
14 arctan2,
15 cmap,
16 Konst(..),
17 Build(..),
18 atIndex,
19 minIndex, maxIndex, minElement, maxElement,
20 sumElements, prodElements,
21 step, cond, find, assoc, accum,
22 Element(..),
23 Product(..), dot, udot,
24 optimiseMult,
25 mXm, mXv, vXm, (<.>),
26 Mul(..),
27 LSDiv, (<\>),
28 outer, kronecker,
29 RandDist(..),
30 randomVector, gaussianSample, uniformSample,
31 meanCov,
32 Convert(..),
33 Complexable,
34 RealElement,
35 RealOf, ComplexOf, SingleOf, DoubleOf, IndexOf,
36 module Data.Complex,
37 dispf, disps, dispcf, vecdisp, latexFormat, format,
38 loadMatrix, saveMatrix, readMatrix
39) where
40
41
42import Data.Packed.Numeric
43import Data.Packed
44import Data.Packed.Internal(constantD)
45import Data.Complex
46
47constant :: Element a => a -> Int -> Vector a
48constant = constantD
49