]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Fix the column matrix 1-norm (it was missing the absolute value).
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 19 Feb 2014 00:51:18 +0000 (19:51 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 19 Feb 2014 00:51:18 +0000 (19:51 -0500)
src/Linear/Matrix.hs

index 2422eefcb7e269de1e5104ddb1c559b4c5c73e34..90a97b2c0b3387fd1ae896ab5b5c607f860058dc 100644 (file)
@@ -579,7 +579,8 @@ instance (Ring.C a, Arity m, Arity n) => Module.C a (Mat m n a) where
   x *> (Mat rows) = Mat $ V.map (V.map (NP.* x)) rows
 
 
-instance (Algebraic.C a,
+instance (Absolute.C a,
+          Algebraic.C a,
           ToRational.C a,
           Arity m)
          => Normed (Mat (S m) N1 a) where
@@ -594,8 +595,12 @@ instance (Algebraic.C a,
   --   >>> norm_p 2 v1
   --   5.0
   --
+  --   >>> let v1 = vec2d (-1,1) :: Col2 Double
+  --   >>> norm_p 1 v1 :: Double
+  --   2.0
+  --
   norm_p p (Mat rows) =
-    (root p') $ sum [fromRational' (toRational x)^p' | x <- xs]
+    (root p') $ sum [fromRational' (toRational $ abs x)^p' | x <- xs]
     where
       p' = toInteger p
       xs = concat $ V.toList $ V.map V.toList rows