2
有沒有辦法讓一個NxN數組(所以2d數組)的元素,其中每個元素是一個3個數字在0和1之間隨機選擇的數組?做一個NxN數組的1x3隨機數組(python)
輸出應該是這個樣子:
(0.2,0.45,0.98), (0.7,0.58,0.11) ...
(1.0,0.05,0.63, ...
.
.
.
等
我一直想這樣做,但必須有一個更優雅的方式。下面的代碼包括:
import numpy as np
import matplotlib.pyplot as plt
lat = []
for _ in range(2):
w = []
for _ in range(2):
a = np.random.uniform(0.0,1.0)
b = np.random.uniform(0.0,1.0)
c = np.random.uniform(0.0,1.0)
D = np.array([a,b,c])
w.append(D)
lat.append(w)
if _ >= 1:
np.hstack(lat)
所以,如果我使用: np.random.rand(3,3,3) 這給了我,我的問題,但與三個要素進入第三個維度所以它就像一個數據描述的矩陣立方體。 謝謝CoryKramer! – user8188120