matlab - Get fft from a sequece and use sliding windows on it -


i have sequence:

n=1:500  x=sqrt(10)*exp(0.1i*pi*n) + sqrt(10)*exp(0.12i*pi*n)+rand(1,n);  

and want fft x1 until x16 x2 until x17 x3 until x18 ... , plot sliding windows? there solution in matlab?

fft matlab function return discrete fft of series of data. can iterate through data , call fft on each window.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -