下面是兩個numpy ndarrays,它們有相同的行但順序不同。當我按行應用函數g1時,我期望得到相同的結果,但以不同的順序。但情況並非如此。爲什麼numpy apply_along_axis不起作用
g1(x):
return max(0, (x[0] - 1)**2 + (x[1] - 1)**2 - 1.05**2)
Case1:
sol1 = np.array(
[
[0, 0],
[1, 1],
[0, 1],
[1, 0],
[0.2, 0.7],
[0.5, 0.5],
[0.75, 0],
[0.25, 0.8],
[0.5, 0.6],
[0.2, 0.7],
]
)
v = numpy.apply_along_axis(g1, 1, sol1)
This produce: [ 0.8975, 0., 0., 0., 0., 0., 0., 0., 0., 0.] as expected.
Case2:
# The same array with rows shuffled.
sols = numpy.array(
[
[0, 1],
[0.2, 0.7],
[0.5, 0.5],
[0.75, 0],
[0.2, 0.7],
[1, 0],
[0.25, 0.8],
[0.5, 0.6],
[0, 0],
[1, 1],
]
)
v = numpy.apply_along_axis(g1, 1, sols)
This produces: [ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.] which is wrong.
Should be: [ 0., 0., 0., 0., 0., 0., 0., 0., 0.8975, 0.]
我的系統是: numpy的:1.13.1: 蟒蛇:3.6.2: Win10臨: 暢達:4.3.27
感謝
,請返回 '最大(0.0,...)',即在所有情況下的浮動。 – hpaulj
這兩種情況都適用,非常感謝。我只是想明白爲什麼這樣做會產生很大的影響 – Christie