在python中導入numpy包
N=5
weights = np.ones(N)/N //這里就相當於創建了一個數組,且為5個1/5的數組
print "weights", weights
------->weights [0.2 0.2 0.2 0.2 0.2]
在python中導入numpy包
N=5
weights = np.ones(N)/N //這里就相當於創建了一個數組,且為5個1/5的數組
print "weights", weights
------->weights [0.2 0.2 0.2 0.2 0.2]
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。