diff options
author | Alberto Ruiz <aruiz@um.es> | 2015-05-24 12:45:23 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2015-05-24 12:45:23 +0200 |
commit | 8ede2ed162f3d00172ee3fa4835e3ee2184bcd99 (patch) | |
tree | cdb3025dc5e469603d32d4e200cc753d3502c6d8 /packages/base/src/Numeric/LinearAlgebra | |
parent | b1b445697db31b1603a31747ca31151f97ee7263 (diff) |
joint extractor of rows and columns
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Data.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Data.hs b/packages/base/src/Numeric/LinearAlgebra/Data.hs index e4485fc..c94350f 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Data.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Data.hs | |||
@@ -37,7 +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 | Extractor(..), (??), |
41 | takeRows, dropRows, takeColumns, dropColumns, subMatrix, (?), (¿), fliprl, flipud, | 41 | takeRows, dropRows, takeColumns, dropColumns, subMatrix, (?), (¿), fliprl, flipud, |
42 | 42 | ||
43 | -- * Block matrix | 43 | -- * Block matrix |
@@ -81,6 +81,6 @@ import Numeric.LinearAlgebra.Util hiding ((&),(#)) | |||
81 | import Data.Complex | 81 | import Data.Complex |
82 | import Numeric.Sparse | 82 | import Numeric.Sparse |
83 | import Data.Packed.Internal.Vector(Idxs) | 83 | import Data.Packed.Internal.Vector(Idxs) |
84 | import Data.Packed.Internal.Numeric(CInt,Extractor(..),(??),(¿¿)) | 84 | import Data.Packed.Internal.Numeric(CInt,Extractor(..),(??)) |
85 | 85 | ||
86 | 86 | ||