renamed to be more readable

This commit is contained in:
Roger Labbe
2015-01-27 15:46:34 -08:00
parent 9db6b3f69d
commit cfd4e3485a
27 changed files with 0 additions and 0 deletions

13
experiements/noise.py Normal file
View File

@@ -0,0 +1,13 @@
# -*- coding: utf-8 -*-
"""
Created on Fri May 2 10:28:27 2014
@author: rlabbe
"""
import numpy.random
def white_noise (sigma2=1.):
return sigma2 * numpy.random.randn()
if __name__ == "__main__":
assert white_noise(.0) == 0.