我目前得到:試圖矩陣1 * 3轉換成一個列表
y=[[ 0.16666667]
[-0.16666667]
[ 0.16666667]]
這出來使用功能的IM的,我需要把上面成一個列表如下格式:
x= [0.16666667,-0.16666667,0.16666667]
我試圖名單(Y),但這是不行的,因爲它返回:
[array([ 0.16666667]), array([-0.16666667]), array([ 0.16666667])]
究竟如何,我會做到這一點?
請參閱此鏈接(http://stackoverflow.com/questions/4048792/i-want-to-convert-a - 矩陣到一個列表的Python /)。這可能會幫助你。 –
這是一個平面嵌套列表的常見要求,請看[this](http://stackoverflow.com/questions/406121/flattening-a-shallow-list-in-python) – xiaowl
是ya矩陣還是數組? – mtrw