diff options
author | Alberto Ruiz <aruiz@um.es> | 2011-12-07 21:08:55 +0100 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2011-12-07 21:08:55 +0100 |
commit | 337fefa7879028e1fba6cc820420c4b47f8e22b2 (patch) | |
tree | 6c917482b72db5cb57357048c3f7ca6cfd206ad2 /index.txt | |
parent | 196595ecca4232470ce34e6ae1f4e3f297466fc5 (diff) |
converting to git
Diffstat (limited to 'index.txt')
-rw-r--r-- | index.txt | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/index.txt b/index.txt new file mode 100644 index 0000000..e9cadd7 --- /dev/null +++ b/index.txt | |||
@@ -0,0 +1,88 @@ | |||
1 | <HEAD> | ||
2 | <TITLE>hmatrix</TITLE> | ||
3 | <STYLE> <!-- body{width: 600px; margin:50px auto;font-family:arial} --> </STYLE> | ||
4 | </HEAD> | ||
5 | |||
6 | |||
7 | <center>hmatrix</center> | ||
8 | ======= | ||
9 | |||
10 | A Haskell library for numerical computation | ||
11 | ------------------------------------------- | ||
12 | |||
13 | A purely functional interface to linear algebra and other numerical algorithms, internally implemented using [LAPACK][lapack], [BLAS][blas], and [GSL][gsl]. | ||
14 | |||
15 | This package includes standard matrix decompositions (eigensystems, singular values, Cholesky, QR, etc.), linear systems, numeric integration, root finding, etc. | ||
16 | |||
17 | - [Tutorial][tutorial2] | ||
18 | |||
19 | - [Source code and documentation (Hackage)][source] | ||
20 | |||
21 | - [Installation help and known problems][Installation2] | ||
22 | |||
23 | - Source repository: [darcs get http://patch-tag.com/r/aruiz/hmatrix][repo2] | ||
24 | |||
25 | - [Changelog][changes2] | ||
26 | |||
27 | Contributions, suggestions, and bug reports are welcome! | ||
28 | |||
29 | Related Projects | ||
30 | ---------------- | ||
31 | |||
32 | - [hmatrix-static][hmatrix-static], by Reiner Pope. | ||
33 | A thin, lightweight wrapper over hmatrix to | ||
34 | support static checking of matrix and vector sizes (for instance, addition | ||
35 | of different-sized vectors will be disallowed at compile-time). | ||
36 | |||
37 | - [hmatrix-gsl-stats][hmatrix-gsl-stats], [hstatistics][hstatistics], | ||
38 | and [hsignal][hsignal] by Vivian McPhail. | ||
39 | |||
40 | - [repa][repa], regular, multi-dimensional, shape polymorphic parallel arrays. | ||
41 | |||
42 | - [hTensor][hTensor], multidimensional arrays and simple tensor computations. | ||
43 | |||
44 | - [BLAS][pBLAS] and [LAPACK][pLAPACK] Haskell bindings by Patrick Perry. | ||
45 | |||
46 | - [GSL Haskell bindings][aGSL] by Mauricio C. Antunes. | ||
47 | |||
48 | - The alternative [numeric prelude][nprelude] by Dylan Thurston, Henning Thielemann, | ||
49 | and Mikael Johansson. | ||
50 | |||
51 | - [Math packages][mathHack] in Hackage. | ||
52 | |||
53 | - [easyVision][easyVision2]: image processing and computer vision. | ||
54 | |||
55 | - - - | ||
56 | |||
57 | [Alberto Ruiz](http://dis.um.es/profesores/alberto) | ||
58 | |||
59 | [lapack]: http://www.netlib.org/lapack/ | ||
60 | [blas]: http://www.netlib.org/blas/ | ||
61 | [gsl]: http://www.gnu.org/software/gsl/ | ||
62 | |||
63 | [source]: http://hackage.haskell.org/package/hmatrix | ||
64 | [tutorial]: http://code.haskell.org/hmatrix/hmatrix.pdf | ||
65 | [tutorial2]: http://perception.inf.um.es/hmatrix/hmatrix.pdf | ||
66 | [installation]: http://code.haskell.org/hmatrix/install.html | ||
67 | [installation2]: http://perception.inf.um.es/hmatrix/install.html | ||
68 | [repo]: http://perception.inf.um.es/cgi-bin/darcsweb.cgi?r=hmatrix;a=summary | ||
69 | [repo2]: http://patch-tag.com/r/aruiz/hmatrix/ | ||
70 | [changes]: http://code.haskell.org/hmatrix/CHANGES | ||
71 | [changes2]: http://patch-tag.com/r/aruiz/hmatrix/snapshot/current/content/pretty/CHANGES | ||
72 | [docum]:http://perception.inf.um.es/hmatrix/doc | ||
73 | |||
74 | |||
75 | [hmatrix-static]: http://hackage.haskell.org/package/hmatrix-static | ||
76 | [hTensor]: http://perception.inf.um.es/tensor | ||
77 | [hmatrix-gsl-stats]: http://hackage.haskell.org/package/hmatrix-gsl-stats | ||
78 | [hstatistics]: http://hackage.haskell.org/package/hstatistics | ||
79 | [hsignal]: http://hackage.haskell.org/package/hsignal | ||
80 | [pBLAS]: http://hackage.haskell.org/package/blas | ||
81 | [pLAPACK]: http://github.com/patperry/lapack | ||
82 | [aGSL]: http://hackage.haskell.org/package/bindings-gsl | ||
83 | [nprelude]: http://hackage.haskell.org/package/numeric-prelude | ||
84 | [mathHack]: http://hackage.haskell.org/packages/archive/pkg-list.html#cat:math | ||
85 | [easyVision]: http://code.haskell.org/easyVision/ | ||
86 | [easyVision2]: http://perception.inf.um.es/easyVision/ | ||
87 | [repa]: http://hackage.haskell.org/package/repa | ||
88 | |||