- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想在 cnt
值的向量上对像 numpy.arange(0, cnt_i)
这样的调用进行向量化,并像下面的代码片段那样连接结果:
import numpy
cnts = [1,2,3]
numpy.concatenate([numpy.arange(cnt) for cnt in cnts])
array([0, 0, 1, 0, 1, 2])
不幸的是,由于临时数组和列表理解循环,上面的代码内存效率非常低。
有没有办法在 numpy 中更有效地做到这一点?
最佳答案
这是一个完全向量化的函数:
def multirange(counts):
counts = np.asarray(counts)
# Remove the following line if counts is always strictly positive.
counts = counts[counts != 0]
counts1 = counts[:-1]
reset_index = np.cumsum(counts1)
incr = np.ones(counts.sum(), dtype=int)
incr[0] = 0
incr[reset_index] = 1 - counts1
# Reuse the incr array for the final result.
incr.cumsum(out=incr)
return incr
这是@Developer 的答案的变体,它只调用一次 arange
:
def multirange_loop(counts):
counts = np.asarray(counts)
ranges = np.empty(counts.sum(), dtype=int)
seq = np.arange(counts.max())
starts = np.zeros(len(counts), dtype=int)
starts[1:] = np.cumsum(counts[:-1])
for start, count in zip(starts, counts):
ranges[start:start + count] = seq[:count]
return ranges
这是原始版本,写成一个函数:
def multirange_original(counts):
ranges = np.concatenate([np.arange(count) for count in counts])
return ranges
演示:
In [296]: multirange_original([1,2,3])
Out[296]: array([0, 0, 1, 0, 1, 2])
In [297]: multirange_loop([1,2,3])
Out[297]: array([0, 0, 1, 0, 1, 2])
In [298]: multirange([1,2,3])
Out[298]: array([0, 0, 1, 0, 1, 2])
使用更大的计数数组比较时序:
In [299]: counts = np.random.randint(1, 50, size=50)
In [300]: %timeit multirange_original(counts)
10000 loops, best of 3: 114 µs per loop
In [301]: %timeit multirange_loop(counts)
10000 loops, best of 3: 76.2 µs per loop
In [302]: %timeit multirange(counts)
10000 loops, best of 3: 26.4 µs per loop
关于python - 如何有效地连接 numpy 中的许多 arange 调用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20027936/
我在最近更新了运行 Ubuntu 的计算机并且 Python 的默认版本更改为 2.7 时注意到了这个问题。 import json import numpy as np json.dumps(lis
我需要将一些 Matlab 代码转换成 P。我被困在了 numpy.arange我使用给定角度(以弧度为单位)在圆弧上连续设置点。 我做到了这一点(例如 x 轴上的点): def sensor_dat
试试这个: import numpy as np np.arange(0,3*0.1,0.1) 输出将是: 数组([ 0., 0.1, 0.2, 0.3]) 这令人难以置信,因为对于 np.arang
我原以为 numpy 的 arange(start,end) 会生成 [start,end] 范围内的值。以下示例演示了情况并非总是如此(最终值大于 end): import numpy as n
这个问题已经有答案了: Is floating point math broken? (33 个回答) 已关闭 5 年前。 我正在尝试为 N 个离散分数的分布创建一个 N+1 个 bin 的数组。 我
我想创建每月间隔而不使用 np.arange 进行迭代。作为一个简单的示例,我想要一个包含 np.datetime64 对象的数组,表示 1990-2000 范围内的元旦。我想是这样的: np.ara
我正在教自己一些关于 numpy 的知识,我已经整理了一些旧的本科教材以用作示例。因此,我编写了一个 without numpy 函数来计算悬臂梁在任意点的单点载荷引起的挠度。非常简单,除了偏转方程会
有人可以向我解释这里发生了什么吗? 为什么 0.3 和 0.7 值有更多的小数点。我只想要 1 个小数点值。 threshold_range = np.arange(0.1,1,0.1) thresh
我有一个函数要应用于排列: import math from numpy import arange x = arange(7.0,39.0,0.0001) fx = math.exp(-2.0 /
np.arange 接受三个参数:开始、停止和步骤。 我想要的步长是-0.3048。我还有单独的数组用于启动和停止。 首先,我有一个完整的元素数组: array([5.000, 5.000, 5.00
我正在尝试用基于像素的图像的所有 x 坐标的列表填充一个 numpy 数组。所以基本上,n x m 图像将有 n 1,n 2的,依此类推,直到 n m。有没有一种简单的方法来填充一个 numpy 数组
以下是我使用的代码: import numpy as np import pandas as pd from pandas import DataFrame, Series animals = Dat
这个问题在这里已经有了答案: Concatenate range arrays given start, stop numbers in a vectorized way - NumPy (1 个回
有没有办法带... >>> x = np.array([0, 8, 10, 15, 50]).reshape((-1, 1)); ncols = 5 ……然后把它变成…… array([[ 0, 1
我已经使用 numpy 的 arange 函数来制作以下范围: a = n.arange(0,5,1/2) 这个变量本身可以正常工作,但是当我尝试将它放在我的脚本中的任何位置时,我会收到一条错误消息:
我正在使用 arange 函数来定义我的 for 循环迭代并得到意想不到的结果。 i = arange(7.8,8.4,0.05) print i 产生以下结果: [ 7.8 7.85 7.9
我在另一个使用 Numpy 函数 arange 的文件中有一个函数,即 import numpy as np def plot_2D_boundary(plot_range, points, deci
考虑以下 numpy 数组: import numpy as np arr = np.array([np.random.permutation(4) for _ in range(4)]) array
假设我想生成一个介于 0 和 1 之间、间距为 0.1 的数组。在 R 中,我们可以这样做 > seq(0, 1, 0.1) [1] 0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7
我想做我上传的 png 插图所具有的功能,主要有两列,其中有数字。带星号的代码为我提供了类和“SquareMiles”。百分比栏更难获得。我将系列号数组除以该列的总系列数,但没有成功。这个部门如何才能
我是一名优秀的程序员,十分优秀!