An open API service indexing awesome lists of open source software.

https://github.com/eruffaldi/cpplivestat

C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation
https://github.com/eruffaldi/cpplivestat

Last synced: 5 months ago
JSON representation

C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation

Awesome Lists containing this project

README

          

# cpplivestat
C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation

int data2[] = {27,52,92,3,9,2,20};
LiveStatistics q1;

for(auto & x: data1)
q1.add(x);