1. 使用numpy生成0矩陣
(1). np.zeros((行數,列數))
import numpy as np
### 生成乙個兩行,三列的矩陣
np.zeros((2,3))
out[2]:
array([[0., 0., 0.],
[0., 0., 0.]])
(2). np.full((行數,列數), 填充的數值)。這種方法相對於第一種方法更加的通用,可以指定填充的數值。
import numpy as np
np.full((2,3),0)
out[23]:
array([[0, 0, 0],
[0, 0, 0]])
np.full((2,3),1)
out[24]:
array([[1, 1, 1],
[1, 1, 1]])
2. 使用列表解析
[[0]*3 for i in range(2)]
out[3]: [[0, 0, 0], [0, 0, 0]]
這裡要注意的是兩種方式生成的矩陣的型別,第一中方法為np.ndarray,第二種方法為list Python 生成全排列的兩種方式
第一種方式 利用python的itertools模組的permutations 方法 from itertools import permutations try while 1 s sorted raw input l permutations s for x in l print join x ...
Python學習 混淆矩陣的生成
from sklearn import metrics cm train metrics.confusion matrix y train,model.predict x train 訓練樣本的混淆矩陣 在總共66個動物中,我們一共 對了10 15 20 45個樣本,所以準確率 accuracy 4...
螺旋矩陣生成 python實現
今天偶然看見了乙個有意思的數列排序題,就嘗試著比劃了一下,確實挺有意思,蠻好玩的。特此記錄下來 螺旋矩陣樣例如下 1 2 3 4 5 6 20 21 22 23 24 7 19 32 33 34 25 8 18 31 36 35 26 9 17 30 29 28 27 10 16 15 14 13 ...