Thank you, Sir, for making such lectures available for all.
@mikexcohen1 Жыл бұрын
Most welcome
@emmanuelasante99953 жыл бұрын
Infact, your videos are really good. They make you understand the course. Please do you have any videos on the inversion formula for awindowed Fourier Transform?
@panjak3237 ай бұрын
Hey, is there way of improving precision of the FFT without increasing computational complexity ? My problem is that the half of the FFT window results are only complex conjugates, meaning the resolution is halved, because useful frequencies are really only in the first half...
@mikexcohen17 ай бұрын
Hi Antagon. The "raw" output of the FFT is indeed complex-valued. Most people extract the power spectrum from that complex spectrum. I don't discuss that in this video, but it's in other videos in my ANTS2 series. As for increasing the spectral precision: Yep, you can do this by zero-padding the time series. I also talk about that in other videos ;) or you can look up "zero-padding theorem."
@liweihua27644 жыл бұрын
Wow! I like this! Highly recommended. Thanks!
@mikexcohen14 жыл бұрын
Nice, thanks.
@SAURAVPATHAK944 жыл бұрын
Thanks for such a good explanation. I have a doubt. How do we plot overlapping windows? Do we place them side by side but that would increase the length of time axis or take average/weighted average of two adjacent windows for getting power spectra of the common region of two overlapping windows? Kindly explain
@mikexcohen14 жыл бұрын
The time windows may overlap, but the spectrum is plotted at the center time point. So as long as each time window is shifted slightly from the previous, the center time points will not overlap.
@SAURAVPATHAK944 жыл бұрын
@@mikexcohen1 Thanks a lot, Now I got it
@TheKuhlschrank7 ай бұрын
It's a gem. Many thanks!
@DevasheeshMishra4 ай бұрын
bhai merko 5:10 ke agae samjhade
@aytraf2 жыл бұрын
Thanks for the videos! I'm curious, what do you do your plots with? I love the color palette!
@mikexcohen12 жыл бұрын
Thanks :) The slide template and color palette was designed by a professional science graphic artist. I made the graphs in MATLAB and then pasted them into the slides, but the MATLAB graphics have the same color palette with matching background, so you don't actually see that it's just a pasted screenshot, lol.
@aytraf2 жыл бұрын
@@mikexcohen1 Ahha, very creative! Excellent work :)
@vyvan2801 Жыл бұрын
Thank you for nice series video :)
@tobi34974 жыл бұрын
Why is "attenuation" of the window required? I simply applied the FT on "square windows" but then I realised everyone else would apply some window function, like the hanning function. How does it improve the accuracy?
@mikexcohen14 жыл бұрын
That helps protect against sharp edges at the signal boundaries introducing artifacts in the spectrum. I wouldn't say that windowing is "required," but it is a good idea if the windows are relatively short.
@tobi34974 жыл бұрын
@@mikexcohen1 makes sense, thank you for these videos
@neurochannels4 жыл бұрын
Windowing makes the signal wrap around on itself (makes it "periodic") when you force it to taper down to the same values at the two edges, which makes the FFT behave much better.
@KatopianResonance3 жыл бұрын
Using a square window means that frequencies whose wavelength don't fit in that window will be more distorted than frequencies where many wavelengths fit. This is called spectral leakage. Applying a window reduces this negative effect, but distorts the results. Different windows have different advantages, so it's all about choosing a window that distorts in ways you don't care about. You could ofcause just use an infinitely long rectangular window, but that is just converting the STFFT back into the FFT.
@narangfamily76685 ай бұрын
Thanks so much
@faridjafari17103 жыл бұрын
enlightening, Thank you!
@keeper2803 жыл бұрын
Ok, make Time Overlap is easy, but how to do Frequency Overlap?
@mikexcohen13 жыл бұрын
That doesn't really happen in the Fourier transform. To get spectral overlap you'd have to use a different method, like wavelet convolution for example.
@keeper2803 жыл бұрын
@@mikexcohen1 Correct. I collecting data on free time how to do time-frequency reassigned (TFR) spectrogram. Have pdf's and Python,libs. Now must understand how it works.
@harishlakshmanapathi10784 жыл бұрын
Loved your video man. I just have one doubt at 5:55 the figure on the right is actually Multiple Resolution STFT right? Where I can have multiple resolutions for different frequency bands?
@mikexcohen14 жыл бұрын
Yes, you can pick different spectral resolutions for different ranges of frequencies. It's more code to write and thus a bit more hassle ;) but yes that's what that picture illustrates.