Numpy进行排序
中文论坛里找了10分钟,不如外论坛找1分钟。
从小到大的排序
arNeurons2 = np.sort(arNeurons, axis=1)
# 从大到小的排序
arNeurons2 = -np.sort(-arNeurons, axis=1)