=========
sobol_seq
=========

Python Sobol sequence implementation.
`Sobol sequences <https://en.wikipedia.org/wiki/Sobol_sequence>`_ are quasi-random low-discrepancy sequences that are useful for creating sample distributions.

The original code that this package is based on is by John Burkardt and Corrado Chisari.
The original version is available from:
http://people.sc.fsu.edu/~jburkardt/py_src/sobol/sobol.html

Installation
============

To install via pip:

	pip install sobol_seq
or
	python -m pip install sobol_seq

To install as usual with setuptools - source available from https://github.com/naught101/sobol_seq.

To install via Conda:

    conda install -c https://conda.binstar.org/naught101 sobol_seq

Usage
=====

See documentation (and source code) `on github <https://github.com/naught101/sobol_seq>`_.


