summaryrefslogtreecommitdiff
path: root/packages/base/src/Numeric
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-06-17 13:02:26 +0200
committerAlberto Ruiz <aruiz@um.es>2015-06-17 13:02:26 +0200
commite7d2916f78b5c140738fc4f4f95c9b13c1768293 (patch)
treefeec2be3d7e7ad5ce80a5ada26b2a69fc3cbf947 /packages/base/src/Numeric
parent34645d9ea1baccd21a94feebe9279a2089b91b5d (diff)
luSolve'
Diffstat (limited to 'packages/base/src/Numeric')
-rw-r--r--packages/base/src/Numeric/LinearAlgebra.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra.hs b/packages/base/src/Numeric/LinearAlgebra.hs
index 2e6b8ca..e899445 100644
--- a/packages/base/src/Numeric/LinearAlgebra.hs
+++ b/packages/base/src/Numeric/LinearAlgebra.hs
@@ -77,6 +77,7 @@ module Numeric.LinearAlgebra (
77 linearSolveLS, 77 linearSolveLS,
78 linearSolveSVD, 78 linearSolveSVD,
79 luSolve, 79 luSolve,
80 luSolve',
80 cholSolve, 81 cholSolve,
81 cgSolve, 82 cgSolve,
82 cgSolve', 83 cgSolve',
@@ -158,7 +159,7 @@ import Numeric.Vector()
158import Internal.Matrix 159import Internal.Matrix
159import Internal.Container hiding ((<>)) 160import Internal.Container hiding ((<>))
160import Internal.Numeric hiding (mul) 161import Internal.Numeric hiding (mul)
161import Internal.Algorithms hiding (linearSolve,Normed,orth,luPacked',linearSolve') 162import Internal.Algorithms hiding (linearSolve,Normed,orth,luPacked',linearSolve',luSolve')
162import qualified Internal.Algorithms as A 163import qualified Internal.Algorithms as A
163import Internal.Util 164import Internal.Util
164import Internal.Random 165import Internal.Random