summaryrefslogtreecommitdiff
path: root/lib/Data
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-10-23 19:53:03 +0000
committerAlberto Ruiz <aruiz@um.es>2007-10-23 19:53:03 +0000
commit9c65a03f4e2b3b09f6f2ac606c5b22f6df9cea14 (patch)
tree72e0410c896e5ab6c1e7745bab20b1e2eaf6c72b /lib/Data
parent477c7cfc74c93363708ece4832947455c3e55e31 (diff)
removed conjTrans
Diffstat (limited to 'lib/Data')
-rw-r--r--lib/Data/Packed/Matrix.hs11
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/Data/Packed/Matrix.hs b/lib/Data/Packed/Matrix.hs
index 260c1e0..e94d038 100644
--- a/lib/Data/Packed/Matrix.hs
+++ b/lib/Data/Packed/Matrix.hs
@@ -16,10 +16,11 @@
16module Data.Packed.Matrix ( 16module Data.Packed.Matrix (
17 Field, 17 Field,
18 Matrix,rows,cols, 18 Matrix,rows,cols,
19 (><), reshape, flatten, 19 (><),
20 trans,
21 reshape, flatten,
20 fromLists, toLists, 22 fromLists, toLists,
21 (@@>), 23 (@@>),
22 trans, conjTrans,
23 asRow, asColumn, 24 asRow, asColumn,
24 fromRows, toRows, fromColumns, toColumns, 25 fromRows, toRows, fromColumns, toColumns,
25 fromBlocks, repmat, 26 fromBlocks, repmat,
@@ -28,7 +29,7 @@ module Data.Packed.Matrix (
28 extractRows, 29 extractRows,
29 ident, diag, diagRect, takeDiag, 30 ident, diag, diagRect, takeDiag,
30 liftMatrix, liftMatrix2, 31 liftMatrix, liftMatrix2,
31 format, dispR, readMatrix, fromFile, fromArray2D 32 format, readMatrix, fromFile, fromArray2D
32) where 33) where
33 34
34import Data.Packed.Internal 35import Data.Packed.Internal
@@ -154,10 +155,6 @@ flatten = cdat
154fromLists :: Field t => [[t]] -> Matrix t 155fromLists :: Field t => [[t]] -> Matrix t
155fromLists = fromRows . map fromList 156fromLists = fromRows . map fromList
156 157
157-- | conjugate transpose
158conjTrans :: Matrix (Complex Double) -> Matrix (Complex Double)
159conjTrans = trans . liftMatrix conj
160
161-- | creates a 1-row matrix from a vector 158-- | creates a 1-row matrix from a vector
162asRow :: Field a => Vector a -> Matrix a 159asRow :: Field a => Vector a -> Matrix a
163asRow v = reshape (dim v) v 160asRow v = reshape (dim v) v