├── LICENSE ├── README.md ├── ZMC ├── ZMCintegral_functional.py ├── ZMCintegral_multifunctions.py ├── ZMCintegral_normal.py └── __init__.py ├── ZMCintegral.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt ├── dist ├── ZMCintegral-5.0-py3-none-any.whl ├── ZMCintegral-5.0.tar.gz ├── ZMCintegral-5.1-py3-none-any.whl └── ZMCintegral-5.1.tar.gz ├── pics ├── multi-function.PNG ├── parameter integration theoretical.PNG ├── parameter integration.PNG ├── sin6d.PNG └── sin6d_theoretical.PNG ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/README.md -------------------------------------------------------------------------------- /ZMC/ZMCintegral_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMC/ZMCintegral_functional.py -------------------------------------------------------------------------------- /ZMC/ZMCintegral_multifunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMC/ZMCintegral_multifunctions.py -------------------------------------------------------------------------------- /ZMC/ZMCintegral_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMC/ZMCintegral_normal.py -------------------------------------------------------------------------------- /ZMC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMC/__init__.py -------------------------------------------------------------------------------- /ZMCintegral.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMCintegral.egg-info/PKG-INFO -------------------------------------------------------------------------------- /ZMCintegral.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/ZMCintegral.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /ZMCintegral.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ZMCintegral.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ZMC 2 | -------------------------------------------------------------------------------- /dist/ZMCintegral-5.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/dist/ZMCintegral-5.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/ZMCintegral-5.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/dist/ZMCintegral-5.0.tar.gz -------------------------------------------------------------------------------- /dist/ZMCintegral-5.1-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/dist/ZMCintegral-5.1-py3-none-any.whl -------------------------------------------------------------------------------- /dist/ZMCintegral-5.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/dist/ZMCintegral-5.1.tar.gz -------------------------------------------------------------------------------- /pics/multi-function.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/pics/multi-function.PNG -------------------------------------------------------------------------------- /pics/parameter integration theoretical.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/pics/parameter integration theoretical.PNG -------------------------------------------------------------------------------- /pics/parameter integration.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/pics/parameter integration.PNG -------------------------------------------------------------------------------- /pics/sin6d.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/pics/sin6d.PNG -------------------------------------------------------------------------------- /pics/sin6d_theoretical.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/pics/sin6d_theoretical.PNG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Letianwu/ZMCintegral/HEAD/setup.py --------------------------------------------------------------------------------