blob: 71ed8084e52f7cee9fa52fa1ce21c9015ab0e10b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
-----------------------------------------------------------------------------
{- |
Module : Numeric.LinearAlgebra
Copyright : (c) Alberto Ruiz 2006-14
License : GPL
Maintainer : Alberto Ruiz
Stability : provisional
-}
-----------------------------------------------------------------------------
module Numeric.LinearAlgebra (
module Numeric.Container,
module Numeric.LinearAlgebra.Algorithms,
) where
import Numeric.Container
import Numeric.LinearAlgebra.Algorithms
import Numeric.LinearAlgebra.Util()
|