- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个大的 numpy 数组(通常为 500,000x1024,但可以更大),我正在尝试执行几个过程,这取决于数组中正值的位置。一个非常小的示例数组可能是
[[ 0., 0., 0., 0., 0.,-1.,-1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 1., 0., 0., 1., 5., 0., 0.],
[ 0., 1., 1., 0., 0., 0., 1., 0., 0.],
[ 0., 3., 1., 0., 0., 2., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 0., 0., 0., 1., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.]]
第一个是替换每行中相距小于三列的正值之间的任何零。所以如果我用 50 替换这些数字,我的示例输出将是
[[ 0., 0., 0., 0., 0.,-1.,-1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 1.,50.,50., 1., 5., 0., 0.],
[ 0., 1., 1., 0., 0., 0., 1., 0., 0.],
[ 0., 3., 1.,50.,50., 2., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.],
[ 0., 1., 0., 0., 0., 1., 1., 0., 0.],
[ 0., 0., 0., 0., 0., 0., 0., 0., 0.]]
我需要做的第二件事是根据正值的范围为每一行写出一些信息。例如,使用我修改后的数组,我需要能够为第三行写出一个语句,为 col[1:7] 声明正整数,为第四行写出两个语句,为 col[1:3] 和 col 声明正整数[6].
我已经设法利用 numpy 向量化方法来完成第一个任务,但最终还是求助于循环遍历列和行(尽管在整个数组的子集上)。否则,我最终会替换给定行中的所有零,而不仅仅是正值之间的零。
但是第二个任务我似乎无法找到一种方法,如果不使用
循环遍历整个数组for col in arr:
for row in arr:
我想我的总体问题是,有没有一种方法可以利用 numpy 中的向量化方法来定义列索引范围,该范围对于每一行都不同,并且取决于下一列中的值?
如有任何帮助,我们将不胜感激。
最佳答案
不幸的是,Numpy 不能在不生成更多数组的情况下进行太多处理,所以我担心任何解决方案都需要某种形式的手动循环,就像您一直在使用的那样,或者创建一个或多个额外的大数组。您也许可以使用 numexpr 想出一个非常快速且内存高效的解决方案。
这里尝试以一种不一定是内存高效的方式执行此操作,但至少所有循环都将由 Numpy 完成,所以应该比你一直在做的快得多,只要它适合在你的内存中。 (通过将其中一些重写为就地操作可能会提高内存效率,但我不担心。)
这是您的第 1 步:
positive = x>0 # a boolean array marking the positive values in x
positive0 = positive[:,0:-3] # all but last 3 columns
positive1 = positive[:,1:-2] # all but 1st and last 2 columns; not actually used
positive2 = positive[:,2:-1] # all but first 2 and last 1 columns
positive3 = positive[:,3: ] # all but first 3 columns
# In the following, the suffix 1 indicates that we're viewing things from the perspective
# of entries in positive1 above. So, e.g., has_pos_1_to_left1 will be True at
# any position where an entry in positive1 would be preceded by a positive entry in x
has_pos_1_to_left1 = positive0
has_pos_1_or_2_to_right1 = positive2 | positive3
flanked_by_positives1 = has_pos_1_to_left1 & has_pos_1_or_2_to_right1
zeros = (x == 0) # indicates everywhere x is 0
zeros1 = zeros[:,1:-2] # all but 1st and last 2 columns
x1 = x[:,1:-2] # all but 1st and last 2 columns
x1[zeros1 & flanked_by_positives1] = 50 # fill in zeros that were flanked - overwrites x!
# The preceding didn't address the next to last column, b/c we couldn't
# look two slots to the right of it without causing error. Needs special treatment:
x[:,-2][ zeros[:,-2] & positive[:,-1] & (positive[:,-4] or positive[:,-3])] = 50
这是您的第 2 步:
filled_positives = x>0 # assuming we just filled in x
diffs = numpy.diff(filled_positives) # will be 1 at first positive in any sequence,
# -1 after last positive, zero elsewhere
endings = numpy.where(diffs==-1) # tuple specifying coords where positive sequences end
# omits final column!!!
beginnings = numpy.where(diffs==1) # tuple specifying coords where pos seqs about to start
# omits column #0!!!
使用这些开始和结束坐标来提取您说需要的每一行的信息应该很简单,但请记住,这种差异检测方法只能捕捉到从非正到正的转换 ,反之亦然,因此它不会提及从第零列开始或在最后一列结束的正序列,因此如果需要,您需要单独查找这些非转换。
关于python - 在 2D numpy 数组中有效地找到正值的索引范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30918669/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!