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