blob: 87695ee16ab919cbf0198cebb91e691978e1bec3 (
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 : Data.Packed
Copyright : (c) Alberto Ruiz 2006-7
License : GPL-style
Maintainer : Alberto Ruiz (aruiz at um dot es)
Stability : provisional
Portability : uses ffi
The Vector and Matrix types and some utilities.
-}
-----------------------------------------------------------------------------
module Data.Packed (
module Data.Packed.Vector,
module Data.Packed.Matrix,
module Data.Packed.Random,
module Data.Complex
) where
import Data.Packed.Vector
import Data.Packed.Matrix
import Data.Packed.Random
import Data.Complex
|