blob: e8a14d66447f727c6f22ec154efec5e1144ecc90 (
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
|
-----------------------------------------------------------------------------
{- |
Module : Numeric.LinearAlgebra
Copyright : (c) Alberto Ruiz 2006-9
License : GPL-style
Maintainer : Alberto Ruiz (aruiz at um dot es)
Stability : provisional
Portability : uses ffi
This module reexports all normally required functions for Linear Algebra applications.
-}
-----------------------------------------------------------------------------
module Numeric.LinearAlgebra (
module Data.Packed,
module Numeric.LinearAlgebra.Algorithms,
module Numeric.LinearAlgebra.Interface,
module Numeric.LinearAlgebra.Linear
) where
import Data.Packed
import Numeric.LinearAlgebra.Algorithms
import Numeric.LinearAlgebra.Interface
import Numeric.LinearAlgebra.Linear
|