File: README.markdown

package info (click to toggle)
haskell-math-functions 0.3.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,136 kB
  • sloc: haskell: 2,675; python: 121; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# math-functions: collection of tools for numeric computations

[![Build Status](https://travis-ci.org/Shimuuar/math-functions.png?branch=master)](https://travis-ci.org/Shimuuar/math-functions)
[![Build status](https://ci.appveyor.com/api/projects/status/6xexxj9g6rnbg2q4/branch/master?svg=true)](https://ci.appveyor.com/project/Shimuuar/math-functions/branch/master)

This package provides collection of various tools for numeric
computations. Namely:

 - Number pure haskell implementations of special function which are used in
   statistical and numerical computing.

 - Compensated summation (Kahan summation) which allows to

 - Root finding for functions of single real variable

 - Series summation

 - Functions for comparing IEEE754 numbers

Where possible, we give citations and computational complexity
estimates for the algorithms used.


# Get involved!

Please report bugs via the
[github issue tracker](https://github.com/bos/math-functions/issues).

Master [git mirror](https://github.com/bos/math-functions):

* `git clone git://github.com/bos/math-functions.git`

There's also a [Mercurial mirror](https://bitbucket.org/bos/math-functions):

* `hg clone https://bitbucket.org/bos/math-functions`

(You can create and contribute changes using either Mercurial or git.)


# Authors

This library is written and maintained by Bryan O'Sullivan
<bos@serpentine.com> and Aleksey Khudyakov
<alexey.skladnoy@gmail.com>.