summaryrefslogtreecommitdiff
path: root/lib/LinearAlgebra.hs
blob: a271592558430c863b2fa40d1a22e5c4c4e57edb (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
32
33
34
35
-----------------------------------------------------------------------------
{- |
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 LinearAlgebra.Instances,
    module LinearAlgebra.Interface,
    module LAPACK,
    module GSL.Matrix,
    module LinearAlgebra.Algorithms,
    module Complex
) where

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