Last active
September 28, 2018 06:14
-
-
Save joonahn/78695451140759d0c6b712191644e5ca to your computer and use it in GitHub Desktop.
Code that generate random noises
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import numpy as np | |
data = np.random.uniform(-1, 1, [int(input("input random array length:"))]) | |
data = np.around(data, 3).tolist() | |
print(data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment