1 / 8

Fourier Transform: Synthesis

Fourier Transform: Synthesis. Fourier Transform. Y = fft(y,512); Pyy = Y.* conj(Y) / 512; f = 1000*(0:256)/512; plot(f,Pyy(1:257)) title('Frequency content of y') xlabel('frequency (Hz)'). t = 0:0.001:0.6; x = sin(2*pi*50*t)+sin(2*pi*120*t); y = x + 2*randn(size(t));

cissy
Download Presentation

Fourier Transform: Synthesis

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Fourier Transform: Synthesis

  2. Fourier Transform Y = fft(y,512); Pyy = Y.* conj(Y) / 512; f = 1000*(0:256)/512; plot(f,Pyy(1:257)) title('Frequency content of y') xlabel('frequency (Hz)') t = 0:0.001:0.6; x = sin(2*pi*50*t)+sin(2*pi*120*t); y = x + 2*randn(size(t)); plot(1000*t(1:50),y(1:50)) title('Signal Corrupted with Zero-Mean Random Noise') xlabel('time (milliseconds)') fft example from Matlab documentation

  3. Fourier Transform 1/f^1, “pink” noise versus 1/f^0 “white” noise

  4. Fourier Transform Neural oscillations are patterened, relate to each other, **but NOT by an integer ratio**

  5. Fourier Transform • Power at some frequencies depends on behavioral state. (note: here, power is whitened)

  6. Fourier Transform Deviations from 1/f in time are significant…see self-criticality

  7. Fast Fourier Transform Y = fft(y,512); Pyy = Y.* conj(Y) / 512; f = 1000*(0:256)/512; plot(f,Pyy(1:257)) title('Frequency content of y') xlabel('frequency (Hz)') t = 0:0.001:0.6; x = sin(2*pi*50*t)+sin(2*pi*120*t); y = x + 2*randn(size(t)); plot(1000*t(1:50),y(1:50)) title('Signal Corrupted with Zero-Mean Random Noise') xlabel('time (milliseconds)') What is a Spectrogram? fft example from Matlab documentation

  8. Power Spectra • Example of fast-Fourier with small temporal windows over long behavioural epochs (p. 106) • Example of Fourier averaged over 1s time window (plot on left) and smoothed using smaller, overlapping windows to reveal dynamics (main plot) fixation period face on

More Related