-2
我不知道怎麼的10x10
矩陣轉換成的5x5
四個矩陣,例如:如何將列表(矩陣)拆分爲其他列表?
[[10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # matrix 10x10
[20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
[30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
[40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
[50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
[60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
[10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
[20, 21, 22, 23, 24, 25, 26, 27, 28, 29],
[30, 31, 32, 33, 34, 35, 36, 37, 38, 39],
[40, 41, 42, 43, 44, 45, 46, 47, 48, 49]]
我需要轉換成這樣:
[[10, 11, 12, 13, 14] # 4 like this with the other numbers too
[20, 21, 22, 23, 24]
[30, 31, 32, 33, 34]
[40, 41, 42, 43, 44]
[50, 51, 52, 53, 54]]
可能重複的[如何將矩陣拆分成4個象限在Python中使用numpy](http://stackoverflow.com/questions/25855180/how-to-split-matrix-into-4-quadrants-in-python-使用numpy)和[如何使用numpy將一個矩陣分成4個塊](http://stackoverflow.com/questions/11105375/how-to-split-a-matrix-into-4-blocks-using-numpy) – fredtantini 2014-10-29 15:36:34