T
is a numpy array:
In [38]: T
Out[38]:
array([[0.4 , 0.56, 0.03, 0.01],
[0.45, 0.51, 0.04, 0. ],
[0.25, 0.25, 0.25, 0.25],
[0. , 0. , 0.01, 0.99]])
T[..]
is indexing; in this case is selects a column of the array:
In [39]: T[:,0]
Out[39]: array([0.4 , 0.45, 0.25, 0. ])
In [40]: T[:,3]
Out[40]: array([0.01, 0. , 0.25, 0.99])
Spend some time to read the numpy
basics. Indexing an array is a very basic operation.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…