blob: da4a4b5880dba00f9aefe3867cb7fc79293c085c (
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 : 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 Numeric.LinearAlgebra.Algorithms,
module Numeric.LinearAlgebra.Interface,
module Numeric.LinearAlgebra.Linear,
module Numeric.Matrix,
module Numeric.Vector
) where
import Numeric.LinearAlgebra.Algorithms
import Numeric.LinearAlgebra.Interface
import Numeric.LinearAlgebra.Linear
import Numeric.Matrix
import Numeric.Vector
|