我在某些代碼中遇到了numpy.apply_along_axis函數。我不明白關於它的文檔。numpy.apply_along_axis究竟執行什麼操作?
這是文檔的一個示例:
>>> def new_func(a):
... """Divide elements of a by 2."""
... return a * 0.5
>>> b = np.array([[1,2,3], [4,5,6], [7,8,9]])
>>> np.apply_along_axis(new_func, 0, b)
array([[ 0.5, 1. , 1.5],
[ 2. , 2.5, 3. ],
[ 3.5, 4. , 4.5]])
據我作爲以爲我理解的文檔,我會預期:
array([[ 0.5, 1. , 1.5],
[ 4 , 5 , 6 ],
[ 7 , 8 , 9 ]])
即具有沿軸線施加的函數[1,2,3]這是軸 in [[1,2,3],[4,5,6],[7,8,9]]
顯然我錯了。你能糾正我嗎?