numpy_ringbuffer
Ring buffer implementation for numpy
Ring buffer implementation for numpy
To install this package, run one of the following:
Ring (aka circular) buffers backed by a numpy array, supporting:
collections.deque
b.append(val)b.appendleft(val)b.extend(val)b.extendleft(val)b.pop(val)b.popleft(val)collections.Sequence protocol (unoptimized)np.array(b)RingBuffer(N, dtype=(int, 3))Summary
Ring buffer implementation for numpy
Last Updated
Jul 1, 2022 at 12:35
License
MIT
Total Downloads
3.2K
Supported Platforms