在numpy中的2d数组中的特定位置插入行?

在numpy中的2d数组中的特定位置插入行?,第1张

在numpy中的2d数组中的特定位置插入行?

您可能正在寻找

numpy.insert

>>> import numpy as np>>> a = np.zeros((2, 2))>>> aarray([[ 0.,  0.],       [ 0.,  0.]])# In the following line 1 is the index before which to insert, 0 is the axis.>>> np.insert(a, 1, np.array((1, 1)), 0)  array([[ 0.,  0.],       [ 1.,  1.],       [ 0.,  0.]])>>> np.insert(a, 1, np.array((1, 1)), 1)array([[ 0.,  1.,  0.],       [ 0.,  1.,  0.]])


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5631086.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存