diff options
author | Alberto Ruiz <aruiz@um.es> | 2014-06-06 20:01:57 +0200 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2014-06-06 20:01:57 +0200 |
commit | 57bf4ffaa426358a03839a2b6e4075e7dc000d9f (patch) | |
tree | 0298a32bda9f8cfe91e312d254bac1c84c0f8fdd /packages/base/src/Numeric/HMatrix.hs | |
parent | a40ed5c42f779561151b3119df0ebeddfcec183c (diff) |
norms
Diffstat (limited to 'packages/base/src/Numeric/HMatrix.hs')
-rw-r--r-- | packages/base/src/Numeric/HMatrix.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/base/src/Numeric/HMatrix.hs b/packages/base/src/Numeric/HMatrix.hs index 024e462..9d34658 100644 --- a/packages/base/src/Numeric/HMatrix.hs +++ b/packages/base/src/Numeric/HMatrix.hs | |||
@@ -121,8 +121,7 @@ module Numeric.HMatrix ( | |||
121 | orth, | 121 | orth, |
122 | 122 | ||
123 | -- * Norms | 123 | -- * Norms |
124 | norm_0, norm_1, norm_2, norm_Inf, | 124 | Normed(..), |
125 | mnorm_0, mnorm_1, mnorm_2, mnorm_Inf, | ||
126 | norm_Frob, norm_nuclear, | 125 | norm_Frob, norm_nuclear, |
127 | 126 | ||
128 | -- * Correlation and convolution | 127 | -- * Correlation and convolution |
@@ -140,7 +139,7 @@ module Numeric.HMatrix ( | |||
140 | RealOf, ComplexOf, SingleOf, DoubleOf, | 139 | RealOf, ComplexOf, SingleOf, DoubleOf, |
141 | IndexOf, | 140 | IndexOf, |
142 | Field, | 141 | Field, |
143 | Normed, | 142 | -- Normed, |
144 | Transposable, | 143 | Transposable, |
145 | CGState(..), | 144 | CGState(..), |
146 | Testable(..), | 145 | Testable(..), |
@@ -152,7 +151,7 @@ import Numeric.LinearAlgebra.Data | |||
152 | import Numeric.Matrix() | 151 | import Numeric.Matrix() |
153 | import Numeric.Vector() | 152 | import Numeric.Vector() |
154 | import Data.Packed.Numeric hiding ((<>)) | 153 | import Data.Packed.Numeric hiding ((<>)) |
155 | import Numeric.LinearAlgebra.Algorithms hiding (linearSolve) | 154 | import Numeric.LinearAlgebra.Algorithms hiding (linearSolve,Normed) |
156 | import qualified Numeric.LinearAlgebra.Algorithms as A | 155 | import qualified Numeric.LinearAlgebra.Algorithms as A |
157 | import Numeric.LinearAlgebra.Util | 156 | import Numeric.LinearAlgebra.Util |
158 | import Numeric.LinearAlgebra.Random | 157 | import Numeric.LinearAlgebra.Random |