summaryrefslogtreecommitdiff
path: root/lib/LAPACK.hs
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-06-07 11:13:32 +0000
committerAlberto Ruiz <aruiz@um.es>2007-06-07 11:13:32 +0000
commit92b1ed5e7fcbebbfbcde34206c040a8472d847d9 (patch)
tree6f22b46ea656490e6392a005321e6d5f7da0898d /lib/LAPACK.hs
parente7c03c1ab4de85e7a700d2eafaebd37f4607c51f (diff)
adapting lapack wrappers
Diffstat (limited to 'lib/LAPACK.hs')
-rw-r--r--lib/LAPACK.hs21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/LAPACK.hs b/lib/LAPACK.hs
new file mode 100644
index 0000000..cab437c
--- /dev/null
+++ b/lib/LAPACK.hs
@@ -0,0 +1,21 @@
1-----------------------------------------------------------------------------
2-- |
3-- Module : LAPACK
4-- Copyright : (c) Alberto Ruiz 2006-7
5-- License : GPL-style
6--
7-- Maintainer : Alberto Ruiz (aruiz at um dot es)
8-- Stability : provisional
9-- Portability : portable (uses FFI)
10--
11-- Wrappers for a few LAPACK functions (<http://www.netlib.org/lapack>).
12--
13-----------------------------------------------------------------------------
14
15module LAPACK (
16 --module LAPACK.Internal
17 eigC,
18 linearSolveLSR
19) where
20
21import LAPACK.Internal