diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -1,11 +1,22 @@ | |||
1 | A Haskell library for numerical computation | 1 | A Haskell library for numerical computation |
2 | ------------------------------------------- | 2 | ------------------------------------------- |
3 | 3 | ||
4 | A purely functional interface to linear algebra and other numerical algorithms, internally implemented using [LAPACK][lapack], [BLAS][blas], and [GSL][gsl]. | 4 | A purely functional interface to linear algebra and other numerical |
5 | algorithms, internally implemented using [LAPACK][lapack], | ||
6 | [BLAS][blas], [GSL][gsl] and [SUNDIALS][sundials]. | ||
5 | 7 | ||
6 | This package includes matrix decompositions (eigensystems, singular values, Cholesky, QR, etc.), linear solvers, numeric integration, root finding, etc. | 8 | This package includes matrix decompositions (eigensystems, singular |
9 | values, Cholesky, QR, etc.), linear solvers, numeric integration, root | ||
10 | finding, etc. | ||
7 | 11 | ||
8 | - [What's new][changes] in version 0.17 (July 2015) | 12 | - [What's new][changes] in version 0.19 (April 2018). This is not |
13 | intended to be a breaking change but a lot of modules have been | ||
14 | modified to ensure that continuous integration is green. | ||
15 | |||
16 | - Support for SUNDIALS has been added. It should be possible to | ||
17 | replace Numeric.GSL.ODE with Numeric.Sundials.ARKode.ODE and have | ||
18 | your program work as before bearing in mind that the methods and | ||
19 | error control might differ (even for those with the same names!). | ||
9 | 20 | ||
10 | - [Code examples][examples] | 21 | - [Code examples][examples] |
11 | 22 | ||
@@ -26,6 +37,7 @@ Contributions, suggestions, and bug reports are welcome! | |||
26 | [lapack]: http://www.netlib.org/lapack/ | 37 | [lapack]: http://www.netlib.org/lapack/ |
27 | [blas]: http://www.netlib.org/blas/ | 38 | [blas]: http://www.netlib.org/blas/ |
28 | [gsl]: http://www.gnu.org/software/gsl/ | 39 | [gsl]: http://www.gnu.org/software/gsl/ |
40 | [sundials]: https://computation.llnl.gov/projects/sundials | ||
29 | 41 | ||
30 | [tutorial]: http://dis.um.es/profesores/alberto/material/hmatrix.pdf | 42 | [tutorial]: http://dis.um.es/profesores/alberto/material/hmatrix.pdf |
31 | [installation]: https://github.com/AlbertoRuiz/hmatrix/blob/master/INSTALL.md | 43 | [installation]: https://github.com/AlbertoRuiz/hmatrix/blob/master/INSTALL.md |