summaryrefslogtreecommitdiff
path: root/lib/LinearAlgebra.hs
blob: 3b56fc4343841318b720c700e9abbabb60b2b73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-----------------------------------------------------------------------------
{- |
Module      :  LinearAlgebra
Copyright   :  (c) Alberto Ruiz 2006-7
License     :  GPL-style

Maintainer  :  Alberto Ruiz (aruiz at um dot es)
Stability   :  provisional
Portability :  uses ffi

Some linear algebra algorithms, implemented by means of BLAS, LAPACK or GSL.

-}
-----------------------------------------------------------------------------
module LinearAlgebra (
    module Data.Packed.Vector,
    module Data.Packed.Matrix,
    module LinearAlgebra.Linear,
    module LAPACK,
    module GSL.Matrix,
    module LinearAlgebra.Algorithms,
    module Complex
) where

import LinearAlgebra.Linear
import LinearAlgebra.Algorithms
import LAPACK
import GSL.Matrix
import Data.Packed.Matrix
import Data.Packed.Vector
import Complex