diff options
Diffstat (limited to 'lib/LAPACK.hs')
-rw-r--r-- | lib/LAPACK.hs | 21 |
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 | |||
15 | module LAPACK ( | ||
16 | --module LAPACK.Internal | ||
17 | eigC, | ||
18 | linearSolveLSR | ||
19 | ) where | ||
20 | |||
21 | import LAPACK.Internal | ||