summaryrefslogtreecommitdiff
path: root/lib/Data
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-09-15 17:55:50 +0000
committerAlberto Ruiz <aruiz@um.es>2007-09-15 17:55:50 +0000
commite0528e1a1e9ada67a39a0494f7dfccc2b6aefcad (patch)
tree7ee028012294a6d48b800c7d00d1e583833a7241 /lib/Data
parentf901d49d1392327c79f1d4c63932fa350cfb506a (diff)
code refactoring
Diffstat (limited to 'lib/Data')
-rw-r--r--lib/Data/Packed/Internal/Matrix.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Data/Packed/Internal/Matrix.hs b/lib/Data/Packed/Internal/Matrix.hs
index 8bca510..951cec6 100644
--- a/lib/Data/Packed/Internal/Matrix.hs
+++ b/lib/Data/Packed/Internal/Matrix.hs
@@ -172,7 +172,7 @@ compat m1 m2 = rows m1 == rows m2 && cols m1 == cols m2
172---------------------------------------------------------------- 172----------------------------------------------------------------
173 173
174-- | Optimized matrix computations are provided for elements in the Field class. 174-- | Optimized matrix computations are provided for elements in the Field class.
175class (Storable a, Num a) => Field a where 175class (Storable a, Floating a) => Field a where
176 constantD :: a -> Int -> Vector a 176 constantD :: a -> Int -> Vector a
177 transdata :: Int -> Vector a -> Int -> Vector a 177 transdata :: Int -> Vector a -> Int -> Vector a
178 multiplyD :: Matrix a -> Matrix a -> Matrix a 178 multiplyD :: Matrix a -> Matrix a -> Matrix a