summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES3
-rw-r--r--hmatrix.cabal2
-rw-r--r--lib/Data/Packed.hs5
-rw-r--r--lib/Data/Packed/Matrix.hs38
-rw-r--r--lib/Data/Packed/Vector.hs17
5 files changed, 58 insertions, 7 deletions
diff --git a/CHANGES b/CHANGES
index 3c40a13..2863b9c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,8 @@
10.8.2.0 10.8.2.0
2======= 2=======
3 3
4- display utilities: dispf, disps 4- display utilities: dispf, disps, vecdisp
5- scalar
5 6
60.8.1.0 70.8.1.0
7======= 8=======
diff --git a/hmatrix.cabal b/hmatrix.cabal
index af726ad..a04516f 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -5,7 +5,7 @@ License-file: LICENSE
5Author: Alberto Ruiz 5Author: Alberto Ruiz
6Maintainer: Alberto Ruiz <aruiz@um.es> 6Maintainer: Alberto Ruiz <aruiz@um.es>
7Stability: provisional 7Stability: provisional
8Homepage: http://www.hmatrix.googlepages.com 8Homepage: http://code.haskell.org/hmatrix
9Synopsis: Linear algebra and numerical computations 9Synopsis: Linear algebra and numerical computations
10Description: Purely functional interface to basic linear algebra 10Description: Purely functional interface to basic linear algebra
11 and other numerical computations, internally implemented using 11 and other numerical computations, internally implemented using
diff --git a/lib/Data/Packed.hs b/lib/Data/Packed.hs
index 7d6d200..7ffdd0b 100644
--- a/lib/Data/Packed.hs
+++ b/lib/Data/Packed.hs
@@ -34,6 +34,7 @@ class (Element e) => Container c e where
34 conj :: RealFloat e => c (Complex e) -> c (Complex e) 34 conj :: RealFloat e => c (Complex e) -> c (Complex e)
35 real :: c Double -> c e 35 real :: c Double -> c e
36 complex :: c e -> c (Complex Double) 36 complex :: c e -> c (Complex Double)
37 scalar :: e -> c e
37 38
38instance Container Vector Double where 39instance Container Vector Double where
39 toComplex = Data.Packed.Internal.toComplex 40 toComplex = Data.Packed.Internal.toComplex
@@ -42,6 +43,7 @@ instance Container Vector Double where
42 conj = Data.Packed.Internal.conj 43 conj = Data.Packed.Internal.conj
43 real = id 44 real = id
44 complex = Data.Packed.comp 45 complex = Data.Packed.comp
46 scalar x = fromList [x]
45 47
46instance Container Vector (Complex Double) where 48instance Container Vector (Complex Double) where
47 toComplex = undefined -- can't match 49 toComplex = undefined -- can't match
@@ -50,6 +52,7 @@ instance Container Vector (Complex Double) where
50 conj = undefined 52 conj = undefined
51 real = Data.Packed.comp 53 real = Data.Packed.comp
52 complex = id 54 complex = id
55 scalar x = fromList [x]
53 56
54instance Container Matrix Double where 57instance Container Matrix Double where
55 toComplex = uncurry $ liftMatrix2 $ curry Data.Packed.toComplex 58 toComplex = uncurry $ liftMatrix2 $ curry Data.Packed.toComplex
@@ -60,6 +63,7 @@ instance Container Matrix Double where
60 conj = liftMatrix Data.Packed.Internal.conj 63 conj = liftMatrix Data.Packed.Internal.conj
61 real = id 64 real = id
62 complex = Data.Packed.comp 65 complex = Data.Packed.comp
66 scalar x = (1><1) [x]
63 67
64instance Container Matrix (Complex Double) where 68instance Container Matrix (Complex Double) where
65 toComplex = undefined 69 toComplex = undefined
@@ -68,6 +72,7 @@ instance Container Matrix (Complex Double) where
68 conj = undefined 72 conj = undefined
69 real = Data.Packed.comp 73 real = Data.Packed.comp
70 complex = id 74 complex = id
75 scalar x = (1><1) [x]
71 76
72 77
73-- | converts a real vector into a complex representation (with zero imaginary parts) 78-- | converts a real vector into a complex representation (with zero imaginary parts)
diff --git a/lib/Data/Packed/Matrix.hs b/lib/Data/Packed/Matrix.hs
index 7e197d1..fc988af 100644
--- a/lib/Data/Packed/Matrix.hs
+++ b/lib/Data/Packed/Matrix.hs
@@ -29,7 +29,7 @@ module Data.Packed.Matrix (
29 extractRows, 29 extractRows,
30 ident, diag, diagRect, takeDiag, 30 ident, diag, diagRect, takeDiag,
31 liftMatrix, liftMatrix2, 31 liftMatrix, liftMatrix2,
32 format, dispf, disps, vecdisp, 32 format, dispf, disps,
33 loadMatrix, saveMatrix, fromFile, fileDimensions, 33 loadMatrix, saveMatrix, fromFile, fileDimensions,
34 readMatrix, fromArray2D 34 readMatrix, fromArray2D
35) where 35) where
@@ -230,7 +230,7 @@ this function the user can easily define any desired display function:
230 230
231@import Text.Printf(printf)@ 231@import Text.Printf(printf)@
232 232
233@disp = putStrLn . format \" \" (printf \"%.2f\")@ 233@disp = putStr . format \" \" (printf \"%.2f\")@
234 234
235-} 235-}
236format :: (Element t) => String -> (t -> String) -> Matrix t -> String 236format :: (Element t) => String -> (t -> String) -> Matrix t -> String
@@ -249,11 +249,32 @@ dispC d m = disp m (shfc d)
249------------------------------------------------------------------- 249-------------------------------------------------------------------
250-- display utilities 250-- display utilities
251 251
252-- | Print a matrix with \"autoscaling\" and a given number of decimal places. 252{- | Show a matrix with \"autoscaling\" and a given number of decimal places.
253
254@disp = putStr . disps 2
255
256\> disp $ 120 * (3><4) [1..]
2573x4 E3
258 0.12 0.24 0.36 0.48
259 0.60 0.72 0.84 0.96
260 1.08 1.20 1.32 1.44
261@
262-}
253disps :: Int -> Matrix Double -> String 263disps :: Int -> Matrix Double -> String
254disps d x = sdims x ++ " " ++ formatScaled d x 264disps d x = sdims x ++ " " ++ formatScaled d x
255 265
256-- | Print a matrix with a given number of decimal places. 266{- | Show a matrix with a given number of decimal places.
267
268@disp = putStr . dispf 3
269
270\> disp (1/3 + ident 4)
2714x4
2721.333 0.333 0.333 0.333
2730.333 1.333 0.333 0.333
2740.333 0.333 1.333 0.333
2750.333 0.333 0.333 1.333
276@
277-}
257dispf :: Int -> Matrix Double -> String 278dispf :: Int -> Matrix Double -> String
258dispf d x = sdims x ++ "\n" ++ formatFixed (if isInt x then 0 else d) x 279dispf d x = sdims x ++ "\n" ++ formatFixed (if isInt x then 0 else d) x
259 280
@@ -272,7 +293,14 @@ formatScaled dec t = "E"++show o++"\n" ++ ss
272 o = floor $ maximum $ map (logBase 10 . abs) $ toList $ flatten t 293 o = floor $ maximum $ map (logBase 10 . abs) $ toList $ flatten t
273 fmt = '%':show (dec+3) ++ '.':show dec ++"f" 294 fmt = '%':show (dec+3) ++ '.':show dec ++"f"
274 295
275-- | Print a vector using a function for printing matrices. 296{- | Show a vector using a function for showing matrices.
297
298@disp = putStr . vecdisp (dispf 2)
299
300\> disp (linspace 10 (0,1))
30110 |> 0.00 0.11 0.22 0.33 0.44 0.56 0.67 0.78 0.89 1.00
302@
303-}
276vecdisp :: (Element t) => (Matrix t -> String) -> Vector t -> String 304vecdisp :: (Element t) => (Matrix t -> String) -> Vector t -> String
277vecdisp f v 305vecdisp f v
278 = ((show (dim v) ++ " |> ") ++) . (++"\n") 306 = ((show (dim v) ++ " |> ") ++) . (++"\n")
diff --git a/lib/Data/Packed/Vector.hs b/lib/Data/Packed/Vector.hs
index ed0e49c..6f1096f 100644
--- a/lib/Data/Packed/Vector.hs
+++ b/lib/Data/Packed/Vector.hs
@@ -18,6 +18,7 @@ module Data.Packed.Vector (
18 dim, (@>), 18 dim, (@>),
19 subVector, join, 19 subVector, join,
20 constant, linspace, 20 constant, linspace,
21 vecdisp,
21 vectorMax, vectorMin, vectorMaxIndex, vectorMinIndex, 22 vectorMax, vectorMin, vectorMaxIndex, vectorMinIndex,
22 mapVector, zipVector, 23 mapVector, zipVector,
23 fscanfVector, fprintfVector, freadVector, fwriteVector, 24 fscanfVector, fprintfVector, freadVector, fwriteVector,
@@ -74,3 +75,19 @@ constant = constantD -- about 2x faster
74buildVector :: Element a => Int -> (Int -> a) -> Vector a 75buildVector :: Element a => Int -> (Int -> a) -> Vector a
75buildVector len f = 76buildVector len f =
76 fromList $ map f [0 .. (len - 1)] 77 fromList $ map f [0 .. (len - 1)]
78
79
80{- | Show a vector using a function for showing matrices.
81
82@disp = putStr . vecdisp ('dispf' 2)
83
84\> disp ('linspace' 10 (0,1))
8510 |> 0.00 0.11 0.22 0.33 0.44 0.56 0.67 0.78 0.89 1.00
86@
87-}
88vecdisp :: (Element t) => (Matrix t -> String) -> Vector t -> String
89vecdisp f v
90 = ((show (dim v) ++ " |> ") ++) . (++"\n")
91 . unwords . lines . tail . dropWhile (not . (`elem` " \n"))
92 . f . trans . reshape 1
93 $ v