├── .gitignore ├── LICENSE ├── README.md ├── clt.py ├── docs ├── dataflow.PNG ├── example_plot1.png ├── example_plot2.png ├── example_plot3.png └── example_plot4.png ├── failurecriteria.py ├── plotresults.py ├── requirements.txt ├── runfailuretest.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | plots/* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/README.md -------------------------------------------------------------------------------- /clt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/clt.py -------------------------------------------------------------------------------- /docs/dataflow.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/docs/dataflow.PNG -------------------------------------------------------------------------------- /docs/example_plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/docs/example_plot1.png -------------------------------------------------------------------------------- /docs/example_plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/docs/example_plot2.png -------------------------------------------------------------------------------- /docs/example_plot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/docs/example_plot3.png -------------------------------------------------------------------------------- /docs/example_plot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/docs/example_plot4.png -------------------------------------------------------------------------------- /failurecriteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/failurecriteria.py -------------------------------------------------------------------------------- /plotresults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/plotresults.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | -------------------------------------------------------------------------------- /runfailuretest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/runfailuretest.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopbernhardt/lamipy/HEAD/tests.py --------------------------------------------------------------------------------