1. 程式人生 > >Python中reshape函式引數-1的意思?

Python中reshape函式引數-1的意思?

1、要記住,python預設是按行取元素

-1是模糊控制的意思 比如人reshape(-1,2)固定2列 多少行不知道


結果:


2、出錯情況

>>> a = np.array([[1,2,3], [4,5,6]])
>>> np.reshape(a, (3,-1)) # the unspecified value is inferred to be 2
array([[1, 2],
       [3, 4],
       [5, 6]])
因為 a 總共有 6 個元素,reshape 成一個二維陣列,指定第一維的長度是3(即 3 行),numpy 可以自動推斷出第二維的長度是 2 (6 除以 3 等於 2)。
我們可以再試一下如果有多個維度沒有指定長度的話會怎樣。
>>> np.reshape(a, (-1,-1))
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/numpy/core/fromnumeric.py", line 224, in reshape return reshape(newshape, order=order) ValueError: can only specify one unknown dimension
如果出現了無法整除的情況呢?
np.reshape(a, (4,-1
)) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/numpy/core/fromnumeric.py", line 224, in reshape
return reshape(newshape, order=order) ValueError: total size of new array must be