File: Development.hs

package info (click to toggle)
haskell-hmatrix 0.15.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 608 kB
  • ctags: 302
  • sloc: haskell: 4,909; ansic: 2,688; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 894 bytes parent folder | download
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