Added numGen generator

- Removed unstable randomi version
- Added numGen generator
- Detected bug
This commit is contained in:
2018-06-03 00:41:18 +02:00
parent 4e3ceac4a9
commit aa43c93ae5
3 changed files with 23 additions and 99 deletions

View File

@@ -8,7 +8,7 @@
#usage: python pyscript.py
#notes:
#dependencies: mathplotlib
#known_issues:
#known_issues: When clusters are 'thin' or noice is to strong --> unaccurate
#python_version: 3.x
#==============================================================================
@@ -135,6 +135,8 @@ def startup(data):
print(str(seconds) + " seconds for execution")
# Start the algorithm and generate test data
data = dmtest.plzGen(10000)
# data = dmtest.plzGen(10000)
# data = dmtest.numGen(10000, 3, 5)
data = dmtest.numGen(10000, 8, 7)
startup(data)