Skip to main content

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 (x,y,z): sqrt(x**2+y**2+z**2),
...     npoints=1e6, xl=[0.,0.,0.], xu=[1.,1.,1.])
>>> print "{} +/- {}".format(result,error)
0.960695982212 +/- 0.000277843266684

Installation

From Pypi

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

scikit-monaco-0.1.tar.gz (1.8 MB view details)

Uploaded Source

File details

Details for the file scikit-monaco-0.1.tar.gz.

File metadata

File hashes

Hashes for scikit-monaco-0.1.tar.gz
Algorithm Hash digest
SHA256 b7857aef706150aeb3ce3b5c7b442492cbd1012a9f23b947940a6f9947fe8734
MD5 3121e6935653e612e234fc516c0d3c3c
BLAKE2b-256 4aa3aa0e4f8f194f0c51eb2a7f75f4a18ec5afb2954b1a25af3d7daa47a75e93

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page