Python modules for Monte Carlo integration
Project description
scikit-monaco is a library for Monte Carlo integration in python. The core is written in Cython, with process-level parallelism to squeeze the last bits of speed out of the python interpreter.
A code snippet is worth a thousand words. Let’s look at integrating sqrt(x**2 + y**2 + z**2) in the unit square:
>>> from skmonaco import mcquad
>>> from math import sqrt
>>> result, error = mcquad(
... lambda xs: sqrt(xs[0]**2+xs[1]**2+xs[2]**2),
... npoints=1e6, xl=[0.,0.,0.], xu=[1.,1.,1.])
>>> print "{} +/- {}".format(result,error)
0.960695982212 +/- 0.000277843266684
Links
Home page: https://pypi.python.org/pypi/scikit-monaco
Documentation: http://scikit-monaco.readthedocs.org/en/latest/
Source code: https://github.com/scikit-monaco/scikit-monaco
Issues: https://github.com/scikit-monaco/scikit-monaco/issues
Installation
From Pypi
The easiest way to download and install scikit-monaco is from the Python package index (pypi). Just run:
$ python easy_install scikit-monaco
Or, if you have pip:
$ pip install scikit-monaco
From source
Clone the repository using:
$ git clone https://github.com/scikit-monaco/scikit-monaco.git
And run:
$ python setup.py install
in the project’s root directory.
Testing
After the installation, run $ python runtests.py in the package’s root directory.
Issue reporting and contributing
Report issues using the github issue tracker.
Read the CONTRIBUTING guide to learn how to contribute.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file scikit-monaco-0.2.1.tar.gz
.
File metadata
- Download URL: scikit-monaco-0.2.1.tar.gz
- Upload date:
- Size: 597.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb3d4e2a7830b6af68c82fb47ce12afe6dc332bf762f1ee823ef1e6c5ac17ba3 |
|
MD5 | fae9b594a0b17c5b163cafa7b312a58e |
|
BLAKE2b-256 | 5609d70ffb523e8eb7b53144fbd776b759c141eda88f0dc143d81673bcb5414b |