From d4d9082a8d7d3eed6cb5f188fc3b476847dcac27 Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Fri, 16 May 2014 20:10:57 +0200 Subject: GSL.LinearAlgebra reorganized --- packages/hmatrix/src/Numeric/LinearAlgebra.hs | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 packages/hmatrix/src/Numeric/LinearAlgebra.hs (limited to 'packages/hmatrix/src/Numeric/LinearAlgebra.hs') diff --git a/packages/hmatrix/src/Numeric/LinearAlgebra.hs b/packages/hmatrix/src/Numeric/LinearAlgebra.hs new file mode 100644 index 0000000..1c2b1bb --- /dev/null +++ b/packages/hmatrix/src/Numeric/LinearAlgebra.hs @@ -0,0 +1,33 @@ +----------------------------------------------------------------------------- +{- | +Module : Numeric.LinearAlgebra +Copyright : (c) Alberto Ruiz 2006-14 +License : GPL + +Maintainer : Alberto Ruiz +Stability : provisional + + +This module reexports all normally required functions for Linear Algebra applications. + +It also provides instances of standard classes 'Show', 'Read', 'Eq', +'Num', 'Fractional', and 'Floating' for 'Vector' and 'Matrix'. +In arithmetic operations one-component vectors and matrices automatically +expand to match the dimensions of the other operand. + +-} +----------------------------------------------------------------------------- + +module Numeric.LinearAlgebra ( + module Numeric.Container, + module Numeric.LinearAlgebra.Algorithms, + module Numeric.LinearAlgebra.IO, + module Numeric.LinearAlgebra.Random +) where + +import Numeric.Container +import Numeric.LinearAlgebra.Algorithms +import Numeric.LinearAlgebra.Util() +import Numeric.LinearAlgebra.IO +import Numeric.LinearAlgebra.Random + -- cgit v1.2.3