NumPy random.random()

1 개요[ | ]

NumPy random.random()
numpy.random.random()
np.random.random()
Python
CPU
0.3s
MEM
26M
0.4s
Copy
import numpy as np
print( np.random.random(5) )
[0.49583267 0.99814992 0.22262847 0.65426772 0.70032395]
Python
CPU
0.3s
MEM
26M
0.2s
Copy
import numpy as np
print( np.random.random(5) )
print( np.random.random(5) )
[0.28344711 0.2488759  0.57668871 0.99704706 0.22088655]
[0.53671249 0.21679562 0.27809339 0.55483548 0.96284769]

2 같이 보기[ | ]

3 참고[ | ]