From e95c073cac1483541bded5b4564cf773991560ce Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Mon, 26 Dec 2011 11:51:10 +0100 Subject: index.md --- INSTALL.md | 2 -- index.md | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.txt | 90 ------------------------------------------------------------- 3 files changed, 91 insertions(+), 92 deletions(-) create mode 100644 index.md delete mode 100644 index.txt diff --git a/INSTALL.md b/INSTALL.md index 666bdc8..916e006 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -63,7 +63,6 @@ NOTE: The examples using graphics do not yet work in windows. [install2]: http://patch-tag.com/r/aruiz/hmatrix/snapshot/current/content/pretty/INSTALL [winpack]: http://perception.inf.um.es/hmatrix/gsl-lapack-windows.zip -- - - ## Tests ############################################### @@ -78,7 +77,6 @@ After installation we must verify that the library works as expected: If you get any failure please run lapack's own tests to confirm that your version is not broken. For instance, in ubuntu 9.04, **libatlas-sse2** does not work (see this [bug report](https://bugs.launchpad.net/ubuntu/+source/atlas/+bug/368478)). If your lapack library is ok but hmatrix's tests fail please send a bug report! -- - - ## Optimized BLAS/LAPACK ########################################## diff --git a/index.md b/index.md new file mode 100644 index 0000000..ad8f3c5 --- /dev/null +++ b/index.md @@ -0,0 +1,91 @@ + + hmatrix + + + + +
hmatrix
+======= + +A Haskell library for numerical computation +------------------------------------------- + +A purely functional interface to linear algebra and other numerical algorithms, internally implemented using [LAPACK][lapack], [BLAS][blas], and [GSL][gsl]. + +This package includes standard matrix decompositions (eigensystems, singular values, Cholesky, QR, etc.), linear systems, numeric integration, root finding, etc. + +- [Tutorial][tutorial2] + +- [Source code and documentation (Hackage)][source] + +- [Installation help and known problems][Installation3] + +- Source repository: [https://github.com/AlbertoRuiz/hmatrix][repo3] + +- [Changelog][changes3] + +Contributions, suggestions, and bug reports are welcome! + +Related Projects +---------------- + +- [hmatrix-static][hmatrix-static], by Reiner Pope. + A thin, lightweight wrapper over hmatrix to + support static checking of matrix and vector sizes (for instance, addition + of different-sized vectors will be disallowed at compile-time). + +- [hmatrix-gsl-stats][hmatrix-gsl-stats], [hstatistics][hstatistics], + and [hsignal][hsignal] by Vivian McPhail. + +- [repa][repa], regular, multi-dimensional, shape polymorphic parallel arrays. + +- [hTensor][hTensor], multidimensional arrays and simple tensor computations. + +- [BLAS][pBLAS] and [LAPACK][pLAPACK] Haskell bindings by Patrick Perry. + +- [GSL Haskell bindings][aGSL] by Mauricio C. Antunes. + +- The alternative [numeric prelude][nprelude] by Dylan Thurston, Henning Thielemann, + and Mikael Johansson. + +- [Math packages][mathHack] in Hackage. + +- [easyVision][easyVision2]: image processing and computer vision. + +- - - + +[Alberto Ruiz](http://dis.um.es/profesores/alberto) + +[lapack]: http://www.netlib.org/lapack/ +[blas]: http://www.netlib.org/blas/ +[gsl]: http://www.gnu.org/software/gsl/ + +[source]: http://hackage.haskell.org/package/hmatrix +[tutorial]: http://code.haskell.org/hmatrix/hmatrix.pdf +[tutorial2]: http://perception.inf.um.es/hmatrix/hmatrix.pdf +[installation]: http://code.haskell.org/hmatrix/install.html +[installation2]: http://perception.inf.um.es/hmatrix/install.html +[installation3]: https://github.com/AlbertoRuiz/hmatrix/blob/master/INSTALL.md +[repo]: http://perception.inf.um.es/cgi-bin/darcsweb.cgi?r=hmatrix;a=summary +[repo2]: http://patch-tag.com/r/aruiz/hmatrix/ +[repo3]: https://github.com/AlbertoRuiz/hmatrix +[changes]: http://code.haskell.org/hmatrix/CHANGES +[changes2]: http://patch-tag.com/r/aruiz/hmatrix/snapshot/current/content/pretty/CHANGES +[changes3]: https://github.com/AlbertoRuiz/hmatrix/blob/master/CHANGES +[docum]:http://perception.inf.um.es/hmatrix/doc + + +[hmatrix-static]: http://hackage.haskell.org/package/hmatrix-static +[hTensor]: http://perception.inf.um.es/tensor +[hmatrix-gsl-stats]: http://hackage.haskell.org/package/hmatrix-gsl-stats +[hstatistics]: http://hackage.haskell.org/package/hstatistics +[hsignal]: http://hackage.haskell.org/package/hsignal +[pBLAS]: http://hackage.haskell.org/package/blas +[pLAPACK]: http://github.com/patperry/lapack +[aGSL]: http://hackage.haskell.org/package/bindings-gsl +[nprelude]: http://hackage.haskell.org/package/numeric-prelude +[mathHack]: http://hackage.haskell.org/packages/archive/pkg-list.html#cat:math +[easyVision]: http://code.haskell.org/easyVision/ +[easyVision2]: http://perception.inf.um.es/easyVision/ +[repa]: http://hackage.haskell.org/package/repa + diff --git a/index.txt b/index.txt deleted file mode 100644 index 7e536b7..0000000 --- a/index.txt +++ /dev/null @@ -1,90 +0,0 @@ - - hmatrix - - - - -
hmatrix
-======= - -A Haskell library for numerical computation -------------------------------------------- - -A purely functional interface to linear algebra and other numerical algorithms, internally implemented using [LAPACK][lapack], [BLAS][blas], and [GSL][gsl]. - -This package includes standard matrix decompositions (eigensystems, singular values, Cholesky, QR, etc.), linear systems, numeric integration, root finding, etc. - -- [Tutorial][tutorial2] - -- [Source code and documentation (Hackage)][source] - -- [Installation help and known problems][Installation2] - -- Source repository: [https://github.com/AlbertoRuiz/hmatrix][repo3] - -- [Changelog][changes3] - -Contributions, suggestions, and bug reports are welcome! - -Related Projects ----------------- - -- [hmatrix-static][hmatrix-static], by Reiner Pope. - A thin, lightweight wrapper over hmatrix to - support static checking of matrix and vector sizes (for instance, addition - of different-sized vectors will be disallowed at compile-time). - -- [hmatrix-gsl-stats][hmatrix-gsl-stats], [hstatistics][hstatistics], - and [hsignal][hsignal] by Vivian McPhail. - -- [repa][repa], regular, multi-dimensional, shape polymorphic parallel arrays. - -- [hTensor][hTensor], multidimensional arrays and simple tensor computations. - -- [BLAS][pBLAS] and [LAPACK][pLAPACK] Haskell bindings by Patrick Perry. - -- [GSL Haskell bindings][aGSL] by Mauricio C. Antunes. - -- The alternative [numeric prelude][nprelude] by Dylan Thurston, Henning Thielemann, - and Mikael Johansson. - -- [Math packages][mathHack] in Hackage. - -- [easyVision][easyVision2]: image processing and computer vision. - -- - - - -[Alberto Ruiz](http://dis.um.es/profesores/alberto) - -[lapack]: http://www.netlib.org/lapack/ -[blas]: http://www.netlib.org/blas/ -[gsl]: http://www.gnu.org/software/gsl/ - -[source]: http://hackage.haskell.org/package/hmatrix -[tutorial]: http://code.haskell.org/hmatrix/hmatrix.pdf -[tutorial2]: http://perception.inf.um.es/hmatrix/hmatrix.pdf -[installation]: http://code.haskell.org/hmatrix/install.html -[installation2]: http://perception.inf.um.es/hmatrix/install.html -[repo]: http://perception.inf.um.es/cgi-bin/darcsweb.cgi?r=hmatrix;a=summary -[repo2]: http://patch-tag.com/r/aruiz/hmatrix/ -[repo3]: https://github.com/AlbertoRuiz/hmatrix -[changes]: http://code.haskell.org/hmatrix/CHANGES -[changes2]: http://patch-tag.com/r/aruiz/hmatrix/snapshot/current/content/pretty/CHANGES -[changes3]: https://github.com/AlbertoRuiz/hmatrix/blob/master/CHANGES -[docum]:http://perception.inf.um.es/hmatrix/doc - - -[hmatrix-static]: http://hackage.haskell.org/package/hmatrix-static -[hTensor]: http://perception.inf.um.es/tensor -[hmatrix-gsl-stats]: http://hackage.haskell.org/package/hmatrix-gsl-stats -[hstatistics]: http://hackage.haskell.org/package/hstatistics -[hsignal]: http://hackage.haskell.org/package/hsignal -[pBLAS]: http://hackage.haskell.org/package/blas -[pLAPACK]: http://github.com/patperry/lapack -[aGSL]: http://hackage.haskell.org/package/bindings-gsl -[nprelude]: http://hackage.haskell.org/package/numeric-prelude -[mathHack]: http://hackage.haskell.org/packages/archive/pkg-list.html#cat:math -[easyVision]: http://code.haskell.org/easyVision/ -[easyVision2]: http://perception.inf.um.es/easyVision/ -[repa]: http://hackage.haskell.org/package/repa - -- cgit v1.2.3