-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement moving histogram algorithm #752
Labels
algorithms
Algorithms and data structures
easy hacks
The solution is expected to be straightforward even if you are new to the project
enhancement
help wanted
An important and awaited task but we have no human resources for it yet
Milestone
Comments
gavv
added
enhancement
help wanted
An important and awaited task but we have no human resources for it yet
easy hacks
The solution is expected to be straightforward even if you are new to the project
algorithms
Algorithms and data structures
labels
Jul 12, 2024
Hi, I am interested in solving this issue. |
@spran180 Welcome, thanks! |
gavv
pushed a commit
to spran180/roc-toolkit
that referenced
this issue
Jul 28, 2024
gavv
pushed a commit
that referenced
this issue
Jul 28, 2024
What to cover in unit tests, as discussed in #760:
|
Hey @gavv, I'll soon create the pull request including these tests. |
gavv
pushed a commit
to spran180/roc-toolkit
that referenced
this issue
Aug 1, 2024
gavv
pushed a commit
that referenced
this issue
Aug 1, 2024
gavv
added a commit
to gavv/roc-toolkit
that referenced
this issue
Aug 1, 2024
gavv
added a commit
to gavv/roc-toolkit
that referenced
this issue
Aug 1, 2024
gavv
added a commit
to gavv/roc-toolkit
that referenced
this issue
Aug 1, 2024
Landed |
jeshwanthreddy13
pushed a commit
to jeshwanthreddy13/roc-toolkit
that referenced
this issue
Aug 6, 2024
jeshwanthreddy13
pushed a commit
to jeshwanthreddy13/roc-toolkit
that referenced
this issue
Aug 6, 2024
gavv
added a commit
to gavv/roc-toolkit
that referenced
this issue
Aug 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
algorithms
Algorithms and data structures
easy hacks
The solution is expected to be straightforward even if you are new to the project
enhancement
help wanted
An important and awaited task but we have no human resources for it yet
Add a class that implements moving histogram.
The idea is simple:
The new class can be named MovHistogram. Interface should be similar to core::MovStats class, which implements moving minimum, maximum, and variance.
We need a method to add a value, and to get counter value for every bin.
We also need unit tests, you can find example here.
Please use core::RingQueue for ring buffer and core::Array for bins.
This task is needed for #712.
The text was updated successfully, but these errors were encountered: