Skip to content

A Python NumPy implementation of ring buffer (aka circular buffer)

License

Notifications You must be signed in to change notification settings

scls19fr/numpy-buffer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Numpy Buffer

A Python NumPy implementation of buffer.

Install

$ pip install git+https://github.com/scls19fr/numpy-buffer/

Ring Buffer

Description

See description of a ring buffer (or circular buffer).

Usage

In [1]: from numpy_buffer import RingBuffer

In [2]: N = 10

In [3]: ring = RingBuffer(size_max=10, default_value=0.0, dtype=float)

In [4]: ring
Out[4]:
<RingBuffer
    all:     array([ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.])
    partial: array([], dtype=float64)
    size/size_max: 0 / 10
>

In [5]: ring.append(1.2)

In [6]: ring
Out[6]:
<RingBuffer
    all:     array([ 1.2 ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0.])
    partial: array([ 1.2])
    size/size_max: 1 / 10
>

In [7]: ring.append(2.1)

In [8]: ring
Out[8]:
<RingBuffer
    all:     array([ 2.1 ,  1.2 ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0.,  0.])
    partial: array([ 2.1 ,  1.2])
    size/size_max: 2 / 10
>

In [9]: ring.all
Out[9]: array([ 2.1,  1.2,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ,  0. ])

In [10]: ring.partial
Out[10]: array([ 2.1,  1.2])

In [11]: ring.partial[::-1]
Out[11]: array([ 1.2,  2.1])

Development

You can help to develop this library.

Issues

You can submit issues using https://github.com/scls19fr/numpy-buffer/issues

Clone

You can clone repository to try to fix issues yourself using:

$ git clone https://github.com/scls19fr/numpy-buffer

Run unit tests

Run all unit tests

$ nosetests -s -v

Run a given test

$ nosetests tests/test_ring.py:test_ring -s -v

Install development version

$ python setup.py install

or

$ sudo pip install git+https://github.com/scls19fr/numpy-buffer

Collaborating

  • Fork repository
  • Create a branch which fix a given issue
  • Submit pull requests

https://help.github.com/categories/collaborating/

Examples

see samples directory

image

About

A Python NumPy implementation of ring buffer (aka circular buffer)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages