05-07-2010 02:19 PM
A circular buffer is a data structure of a fixed size which operates as if its ends were connected together to form a ring. The circular buffer is a useful way to buffer data between two operations such as data acquisition and analysis. It allows you to decouple and parallelize different operations which would normally be used in a sequential manner. It is also useful in applications where operations using the same data set are happening at different intervals.
09-14-2011 09:20 AM
There is nothing here! You have no code. An example using the library would be helpful
09-14-2011 01:03 PM
There are links to the code and documentation in the original post...