作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何删除 numpy 数组的前导/尾随零?
import numpy as np
a = np.array([0,0,0,3,2,-1,0,0,7,9,13,0,0,0,0,0,0,0])
#Desired output
[3,2,-1,0,0,7,9,13]
这行不通:
a[a != 0]
因为它会删除所有的零,包括内部的零。
最佳答案
使用numpy.trim_zeros
:
>>> import numpy as np
>>> a = np.array([0,0,0,3,2,-1,0,0,7,9,13,0,0,0,0,0,0,0])
>>> np.trim_zeros(a)
array([ 3, 2, -1, 0, 0, 7, 9, 13])
关于python - 修剪/去除 numpy 数组的零点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34593824/
我是一名优秀的程序员,十分优秀!