diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-05-22 19:50:35 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-05-22 19:50:35 +0200 |
commit | 2fb44ea6631210ff618ece4593de2beecd72d9ff (patch) | |
tree | 8cc82bb74456083040029c0ec82d8140ab2b1435 /packages/base/src | |
parent | 288ce45da83f2787150e00194065a0212763c902 (diff) |
export extractor
Diffstat (limited to 'packages/base/src')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Data.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Data.hs b/packages/base/src/Numeric/LinearAlgebra/Data.hs index 6dea407..e4485fc 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Data.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Data.hs | |||
@@ -37,6 +37,7 @@ module Numeric.LinearAlgebra.Data( | |||
37 | fromList, toList, subVector, takesV, vjoin, | 37 | fromList, toList, subVector, takesV, vjoin, |
38 | flatten, reshape, asRow, asColumn, row, col, | 38 | flatten, reshape, asRow, asColumn, row, col, |
39 | fromRows, toRows, fromColumns, toColumns, fromLists, toLists, fromArray2D, | 39 | fromRows, toRows, fromColumns, toColumns, fromLists, toLists, fromArray2D, |
40 | Extractor(..), (??), (¿¿), | ||
40 | takeRows, dropRows, takeColumns, dropColumns, subMatrix, (?), (¿), fliprl, flipud, | 41 | takeRows, dropRows, takeColumns, dropColumns, subMatrix, (?), (¿), fliprl, flipud, |
41 | 42 | ||
42 | -- * Block matrix | 43 | -- * Block matrix |
@@ -68,7 +69,7 @@ module Numeric.LinearAlgebra.Data( | |||
68 | separable, | 69 | separable, |
69 | (¦),(——), | 70 | (¦),(——), |
70 | module Data.Complex, | 71 | module Data.Complex, |
71 | 72 | CInt, Idxs, | |
72 | Vector, Matrix, GMatrix, nRows, nCols | 73 | Vector, Matrix, GMatrix, nRows, nCols |
73 | 74 | ||
74 | ) where | 75 | ) where |
@@ -79,5 +80,7 @@ import Data.Packed.Numeric | |||
79 | import Numeric.LinearAlgebra.Util hiding ((&),(#)) | 80 | import Numeric.LinearAlgebra.Util hiding ((&),(#)) |
80 | import Data.Complex | 81 | import Data.Complex |
81 | import Numeric.Sparse | 82 | import Numeric.Sparse |
83 | import Data.Packed.Internal.Vector(Idxs) | ||
84 | import Data.Packed.Internal.Numeric(CInt,Extractor(..),(??),(¿¿)) | ||
82 | 85 | ||
83 | 86 | ||