當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy.random.rand()用法及代碼示例


關於:
numpy.random.rand(d0,d1,…,dn):創建指定形狀的數組,並用隨機值填充它。
參數:

d0, d1, ..., dn : [int, optional]Dimension of the returned array we require, 
     If no argument is given a single Python float is returned.

返回:

Array of defined shape, filled with random values.

代碼1:隨機構造一維數組


# Python Program illustrating 
# numpy.random.rand() method 
   
import numpy as geek 
   
# 1D Array 
array = geek.random.rand(5) 
print("1D Array filled with random values : \n", array);

輸出:

1D Array filled with random values : 
 [ 0.84503968  0.61570994  0.7619945   0.34994803  0.40113761]

代碼2:隨機構造2D數組

# Python Program illustrating 
# numpy.random.rand() method 
   
import numpy as geek 
   
# 2D Array    
array = geek.random.rand(3, 4) 
print("\n\n2D Array filled with random values : \n", array);

輸出:


2D Array filled with random values : 
 [[ 0.94739375  0.5557614   0.69812121  0.86902435]
 [ 0.94758176  0.22254413  0.21605843  0.44673235]
 [ 0.61683839  0.40570269  0.34369248  0.46799524]]

代碼3:隨機構造3D陣列

# Python Program illustrating 
# numpy.random.rand() method 
   
import numpy as geek 
   
# 3D Array      
array = geek.random.rand(2, 2 ,2) 
print("\n\n3D Array filled with random values : \n", array);

輸出:


3D Array filled with random values : 
 [[[ 0.97942627  0.01068711]
  [ 0.35749073  0.22484643]]

 [[ 0.99733022  0.8029555 ]
  [ 0.44111692  0.90537128]]]

參考文獻:
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.random.rand.html#numpy.random.rand



相關用法


注:本文由純淨天空篩選整理自 numpy.random.rand() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。