-
Notifications
You must be signed in to change notification settings - Fork 4
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
update cmsis-dsp package source and use hanning api provided in PythonWrapper and C #1
base: main
Are you sure you want to change the base?
Conversation
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.
Hi @xiongyu0523,
Thank you for making this pull request. It would be great to get the fix the for the text in.
However, to keep the Towards Data Science article in sync with the code, at this time I prefer to not use the new CMSIS-DSP functions in this repo. However, it's great to see that the arm_hanning_f32
function can simply things.
@@ -1163,7 +1163,7 @@ | |||
"cell_type": "markdown", | |||
"metadata": {}, | |||
"source": [ | |||
"You can see the signal has a similiar shape to the one created with NumPy, however the values on the Y-axis range from -32768 to 32767 rather than 0 to 1.\n" | |||
"You can see the signal has a similiar shape to the one created with NumPy, however the values on the Y-axis range from -32768 to 32767 rather than -1 to 1.\n" |
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.
Could you please make a separate pull request for fixing the text? Thanks.
The Toward Data Science article contains references to a deprecated CMSIDSP repo.
For a reader to reproduce the notebook, they need to use the new repo here: If you prefer not to use the new Hanning window command, I could make a PR with the repo changes but leave the window creation intact. |
Hi @rahedges,
Thank you so much for offering to do this, that would be great. |
thanks for the great article, i want to provide a minor fix