python三维数组作为索引时只取第一个维度

ptest = np.zeros([4],np.uint64)
qtest = np.zeros([3],np.uint64)   ###实验表明三维数组作为索引时只取第一个维度吧
 print(qtest.shape)
 ptest[qtest] += 1
 print(ptest)

输出结果:

(3,)
[1 0 0 0]
    原文作者:zhuiyuan2012
    原文地址: https://blog.csdn.net/zhuiyuanzhongjia/article/details/115478222
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞