-
Notifications
You must be signed in to change notification settings - Fork 17
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
zbpetersbuf is doing fft / inverse fft #3
Comments
So I think im making a function to plot the frequency data. But the selection of frequencies, does that come from a function I make or just by looking at the graph of the invfft? |
Do not make a function to plot. Please follow the homework task!
so please focus on those tasks and not plotting. If you need some example data to see what your function should do take this: import pandas as pd
import numpy as np
data = pd.Series(np.sin(range(0,10)),index=range(0,10)) |
1 so I have already did a couple things since I was unsure, should I delete the part that plots the inverse fft? |
So all functions you do need a docstring in the same file and a unit test in |
so the index being a datetime object I would need to know what this looks like before I finish the pull request, since if its in pure seconds then I do nothing but if its in month, day, year, time then the function for finding frequency would look different |
That’s exactly the point. But since it is a datetime object you know what it is! so you can convert it e.g. in seconds. |
fft / inverse fft using numpy and calculating the actual frequency in useful units (due monday)
The text was updated successfully, but these errors were encountered: