blob: edfd87e74ec33eb10fe5d19e45f99e60709b43ac (
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 Numeric.LinearAlgebra.Algorithms,
-- module Numeric.LinearAlgebra.Interface,
module Numeric.Matrix,
module Data.Packed.Random
) where
import Numeric.LinearAlgebra.Algorithms
--import Numeric.LinearAlgebra.Interface
import Numeric.Matrix
import Data.Packed.Random
|