有一个像这样的矩阵
ma = [[0.343, 0.351, 0.306], [0.145, 0.368, 0.487]]
我想得到一个像这样的向量:
[0.343, 0.145, 0.351, 0.368, 0.306, 0.487]
numpy
为了尝试得到它,我正在使用reshape
但它不起作用。
a = np.array(ma)
>>> print a.shape
(2, 3)
但我得到:
c = a.reshape(3, 2, order='F')
>>> print c
array([[ 0.343, 0.368],
[ 0.145, 0.306],
[ 0.351, 0.487]])
对于任何矩阵大小,最好的方法是什么?我的意思是,例如,如果矩阵不是平方的:
[[0.404, 0.571, 0.025],
[0.076, 0.694, 0.230],
[0.606, 0.333, 0.061],
[0.595, 0.267, 0.138]]
我想得到:
[0.404, 0.076, 0.606, 0.595, 0.571, 0.694, 0.333, 0.267, 0.025, 0.230, 0.061, 0.138]