blob: d6ef64777b549a0cff8229ee261fbd8dbacde37d (
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
|
-----------------------------------------------------------------------------
{- |
Module : LinearAlgebra
Copyright : (c) Alberto Ruiz 2006-7
License : GPL-style
Maintainer : Alberto Ruiz (aruiz at um dot es)
Stability : provisional
Portability : uses ffi
Basic matrix computations implemented by BLAS, LAPACK and GSL.
-}
-----------------------------------------------------------------------------
module LinearAlgebra (
module Data.Packed,
module LinearAlgebra.Linear,
module LinearAlgebra.Algorithms,
module LinearAlgebra.Instances,
module LinearAlgebra.Interface
) where
import Data.Packed
import LinearAlgebra.Linear
import LinearAlgebra.Algorithms
import LinearAlgebra.Instances
import LinearAlgebra.Interface
|