summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Algorithms.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Algorithms.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs
index 7c1c032..de9cb00 100644
--- a/lib/Numeric/LinearAlgebra/Algorithms.hs
+++ b/lib/Numeric/LinearAlgebra/Algorithms.hs
@@ -21,6 +21,8 @@ imported from "Numeric.LinearAlgebra.LAPACK".
21 21
22-} 22-}
23----------------------------------------------------------------------------- 23-----------------------------------------------------------------------------
24{-# OPTIONS_HADDOCK hide #-}
25
24 26
25module Numeric.LinearAlgebra.Algorithms ( 27module Numeric.LinearAlgebra.Algorithms (
26-- * Supported types 28-- * Supported types
@@ -85,8 +87,9 @@ import Data.Array
85import Numeric.ContainerBoot 87import Numeric.ContainerBoot
86 88
87 89
88{- | Class used to define generic linear algebra computations for both real and complex matrices. Only double precision is supported in this version (we can 90{- | Generic linear algebra functions for double precision real and complex matrices.
89transform single precision objects using 'single' and 'double'). 91
92(Single precision data can be converted using 'single' and 'double').
90 93
91-} 94-}
92class (Product t, 95class (Product t,
@@ -438,7 +441,7 @@ i = 0:+1
438 441
439----------------------------------------------------------------------- 442-----------------------------------------------------------------------
440 443
441-- | The nullspace of a matrix from its SVD decomposition. 444-- | The nullspace of a matrix from its precomputed SVD decomposition.
442nullspaceSVD :: Field t 445nullspaceSVD :: Field t
443 => Either Double Int -- ^ Left \"numeric\" zero (eg. 1*'eps'), 446 => Either Double Int -- ^ Left \"numeric\" zero (eg. 1*'eps'),
444 -- or Right \"theoretical\" matrix rank. 447 -- or Right \"theoretical\" matrix rank.