blob: 129bd2224f3211f8bf1ca03eecca26d0109e8be9 (
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
|
-----------------------------------------------------------------------------
{- |
Module : Data.Packed
Copyright : (c) Alberto Ruiz 2006-2014
License : BSD3
Maintainer : Alberto Ruiz
Stability : provisional
Types for dense 'Vector' and 'Matrix' of 'Storable' elements.
-}
-----------------------------------------------------------------------------
{-# OPTIONS_HADDOCK hide #-}
module Data.Packed (
-- * Vector
--
-- | Vectors are @Data.Vector.Storable.Vector@ from the \"vector\" package.
module Data.Packed.Vector,
-- * Matrix
module Data.Packed.Matrix,
) where
import Data.Packed.Vector
import Data.Packed.Matrix
|