summaryrefslogtreecommitdiff
path: root/lib/LAPACK.hs
blob: 088b6d74daf88f4b1f6d48e213bfa33bcc17ba24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-----------------------------------------------------------------------------
-- |
-- Module      :  LAPACK
-- Copyright   :  (c) Alberto Ruiz 2006-7
-- License     :  GPL-style
-- 
-- Maintainer  :  Alberto Ruiz (aruiz at um dot es)
-- Stability   :  provisional
-- Portability :  portable (uses FFI)
--
-- Wrappers for a few LAPACK functions (<http://www.netlib.org/lapack>).
--
-----------------------------------------------------------------------------

module LAPACK (
    --module LAPACK.Internal
    svdR, svdR', svdC, svdC',
    eigC,
    linearSolveLSR
) where

import LAPACK.Internal