diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Algorithms.hs')
-rw-r--r-- | lib/Numeric/LinearAlgebra/Algorithms.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs index 64deba2..c49bec7 100644 --- a/lib/Numeric/LinearAlgebra/Algorithms.hs +++ b/lib/Numeric/LinearAlgebra/Algorithms.hs | |||
@@ -82,7 +82,10 @@ import Data.Array | |||
82 | import Numeric.Container hiding ((.*),(*/)) | 82 | import Numeric.Container hiding ((.*),(*/)) |
83 | import Numeric.MatrixBoot | 83 | import Numeric.MatrixBoot |
84 | 84 | ||
85 | -- | Auxiliary typeclass used to define generic computations for both real and complex matrices. | 85 | {- | Auxiliary typeclass used to define generic linear algebra computations for both real and complex matrices. Only double precision is supported in this version (we can |
86 | transform single precision objects using 'single' and 'double'). | ||
87 | |||
88 | -} | ||
86 | class (Product t, | 89 | class (Product t, |
87 | Convert t, | 90 | Convert t, |
88 | Container Vector t, | 91 | Container Vector t, |