summaryrefslogtreecommitdiff
path: root/lib/GSL/Compat.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-09-12 19:09:47 +0000
committerAlberto Ruiz <aruiz@um.es>2007-09-12 19:09:47 +0000
commit0ff13d993b880739295de343bca62f06fac5ca0c (patch)
tree252a51b4314c19c04a9eda87973eeaae63167a41 /lib/GSL/Compat.hs
parentcd937c2be2900b8f13506d9ae7c731ad43d74e05 (diff)
documentation
Diffstat (limited to 'lib/GSL/Compat.hs')
-rw-r--r--lib/GSL/Compat.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/GSL/Compat.hs b/lib/GSL/Compat.hs
index 1d6f7b9..8a59915 100644
--- a/lib/GSL/Compat.hs
+++ b/lib/GSL/Compat.hs
@@ -234,10 +234,10 @@ instance Mul (Complex Double) (Complex Double) (Complex Double) where
234--------------------------------- matrix matrix 234--------------------------------- matrix matrix
235 235
236instance Mul (Matrix Double) (Matrix Double) (Matrix Double) where 236instance Mul (Matrix Double) (Matrix Double) (Matrix Double) where
237 (<>) = mXm 237 (<>) = multiply
238 238
239instance Mul (Matrix (Complex Double)) (Matrix (Complex Double)) (Matrix (Complex Double)) where 239instance Mul (Matrix (Complex Double)) (Matrix (Complex Double)) (Matrix (Complex Double)) where
240 (<>) = mXm 240 (<>) = multiply
241 241
242instance Mul (Matrix (Complex Double)) (Matrix Double) (Matrix (Complex Double)) where 242instance Mul (Matrix (Complex Double)) (Matrix Double) (Matrix (Complex Double)) where
243 c <> r = c <> liftMatrix comp r 243 c <> r = c <> liftMatrix comp r