diff options
Diffstat (limited to 'packages/base/src')
-rw-r--r-- | packages/base/src/Internal/Convolution.hs (renamed from packages/base/src/Numeric/LinearAlgebra/Util/Convolution.hs) | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Util/Convolution.hs b/packages/base/src/Internal/Convolution.hs index c9e75de..1a70011 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Util/Convolution.hs +++ b/packages/base/src/Internal/Convolution.hs | |||
@@ -1,7 +1,7 @@ | |||
1 | {-# LANGUAGE FlexibleContexts #-} | 1 | {-# LANGUAGE FlexibleContexts #-} |
2 | ----------------------------------------------------------------------------- | 2 | ----------------------------------------------------------------------------- |
3 | {- | | 3 | {- | |
4 | Module : Numeric.LinearAlgebra.Util.Convolution | 4 | Module : Internal.Convolution |
5 | Copyright : (c) Alberto Ruiz 2012 | 5 | Copyright : (c) Alberto Ruiz 2012 |
6 | License : BSD3 | 6 | License : BSD3 |
7 | Maintainer : Alberto Ruiz | 7 | Maintainer : Alberto Ruiz |
@@ -11,13 +11,18 @@ Stability : provisional | |||
11 | ----------------------------------------------------------------------------- | 11 | ----------------------------------------------------------------------------- |
12 | {-# OPTIONS_HADDOCK hide #-} | 12 | {-# OPTIONS_HADDOCK hide #-} |
13 | 13 | ||
14 | module Numeric.LinearAlgebra.Util.Convolution( | 14 | module Internal.Convolution( |
15 | corr, conv, corrMin, | 15 | corr, conv, corrMin, |
16 | corr2, conv2, separable | 16 | corr2, conv2, separable |
17 | ) where | 17 | ) where |
18 | 18 | ||
19 | import qualified Data.Vector.Storable as SV | 19 | import qualified Data.Vector.Storable as SV |
20 | import Data.Packed.Numeric | 20 | import Internal.Vector |
21 | import Internal.Matrix hiding (mat) | ||
22 | import Internal.Numeric | ||
23 | import Internal.Element | ||
24 | import Internal.Conversion | ||
25 | import Internal.Container | ||
21 | 26 | ||
22 | 27 | ||
23 | vectSS :: Element t => Int -> Vector t -> Matrix t | 28 | vectSS :: Element t => Int -> Vector t -> Matrix t |