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
28
29
30
|
-----------------------------------------------------------------------------
-- |
-- Module : Data.Packed.Development
-- Copyright : (c) Alberto Ruiz 2009
-- License : GPL
--
-- Maintainer : Alberto Ruiz <aruiz@um.es>
-- Stability : provisional
-- Portability : portable
--
-- The library can be easily extended with additional foreign functions
-- using the tools in this module. Illustrative usage examples can be found
-- in the @examples\/devel@ folder included in the package.
--
-----------------------------------------------------------------------------
module Data.Packed.Development (
createVector, createMatrix,
vec, mat,
app1, app2, app3, app4,
app5, app6, app7, app8, app9, app10,
MatrixOrder(..), orderOf, cmat, fmat,
unsafeFromForeignPtr,
unsafeToForeignPtr,
check, (//),
at', atM'
) where
import Data.Packed.Internal
|