-
Notifications
You must be signed in to change notification settings - Fork 311
Add dft and idft #847
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
Add dft and idft #847
Conversation
|
|
||
| class DiscreteFourierTransformTests(TestCase): | ||
| def test_basic(self): | ||
| xarr = [1, 2 - 1j, -1j, -1 + 2j] |
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.
Suggest adding a comment that links back to the wikipedia example which is worked out step-by-step: # https://en.wikipedia.org/wiki/Discrete_Fourier_transform#Example.
|
Title has a typo, says |
|
Thanks, I fixed the title. The |
|
LGTM :-) |
This PR adds
dftandidft, contributed by @rhettinger in #843.Additionally, the docs now have a separate section for the various math-related functions.