-
Notifications
You must be signed in to change notification settings - Fork 12
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
Resample multi-channel signals #42
Conversation
Codecov ReportPatch coverage:
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. Additional details and impacted files@@ Coverage Diff @@
## master #42 +/- ##
=======================================
Coverage 78.38% 78.38%
=======================================
Files 10 10
Lines 828 828
=======================================
Hits 649 649
Misses 179 179
☔ View full report in Codecov by Sentry. |
test/runtests.jl
Outdated
x1 = resample(x, 3//2) | ||
@test framerate(x1) == 3 * framerate(x) / 2 | ||
x1 = resample([x x], 3//2; dims=1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
x1 = resample([x x], 3//2; dims=1) | |
x1 = resample([x x], 3//2) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dims=1
is removed.
This PR enables resampling on multi-channel signals.
Before:
After: