Metadata-Version: 1.1
Name: ComplexSystems
Version: 0.2.4.4
Summary: Toolbox for Complex Sytems including : Human Based Mobility Models
Home-page: http://bitbucket.org/vgauthier/complex-systems/
Author: Vincent Gauthier
Author-email: vgauthier@luxbulb.org
License: MIT
Download-URL: https://bitbucket.org/vgauthier/complex-systems/get/0.2.4.2.zip
Description: ===============
        Complex Systems
        ===============
        :Info: See `the site <http://www-public.it-sudparis.eu/~gauthier/>`_ for more information. See `bitbucket <http://bitbucket.org/vgauthier/complex-systems>`_ for the latest source.
        :Author: Vincent Gauthier
        :Maintainer: Vincent Gauthier <vgauthier@luxbulb.org>
        
        About 
        =====
        
        Python package for complex systems simulations  
        
        This package contain: 
        
        - Mobility Models
        	- Truncated Levy Flight Model
          
        Documentation
        =============
        
        You will  need sphinx_  installed to  generate the  documentation. Documentation
        can  be  generated by  running:
        
        .. code-block:: bash
        
        	sphinx-build  -b  html . build/ 
        
        Generated documentation can be found in the *doc/build/html/* directory. Or consult the `online documentation`_ .
        
        Example
        =======
        
        .. code-block:: python
        
        	import pylab as plt
        	from complex_systems.mobility.levy_flight import levy_flight
        	LF = levy_flight(alpha=0.66,beta=0.99,sample_length=10,size_max=10000,velocity=1.0,f_min=8,f_max=10000,s_min=0.8,s_max=430,duration=500,b_c=1)
        	plt.figure()
        	plt.plot(LF[0], LF[1], 'o-')
        
        Testing
        =======
        
        The easiest way to run the tests is to install `nose
        <http://somethingaboutorange.com/mrl/projects/nose/>`_ (**easy_install
        nose**) and run **nosetests** or **python setup.py test** in the root
        of the distribution. Tests are located in the *tests/* directory.
        
        .. _sphinx: http://sphinx.pocoo.org/
        .. _`online documentation`: http://complex-systems.readthedocs.org/nn
Keywords: complex systems,Levy flight,human mobility
Platform: any
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Requires: numpy
Requires:  scikits
Requires: pylab
