generate_gaussian.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 
00003 import random
00004 
00005 if __name__ == "__main__":
00006   samples = 1000
00007   centers = [(0,0,0), (10,10,10), (10,5,0)]
00008   for i in range(samples):
00009     for c in centers:
00010       for coord in c:
00011         print random.gauss(coord, 1.0),
00012       print


vocabulary_tree
Author(s): Patrick Mihelich
autogenerated on Thu Jan 2 2014 12:12:26