switch source package format to 3.0 quilt
[debian/gnuradio] / gr-msdd6000 / src / python-examples / playback_samples.m
1 t = read_complex_binary('msdd.dat',10000000);
2
3 fftsize=256;
4 w = [0:pi/fftsize:pi];
5
6 for i = 0:length(t)/fftsize
7         fftdata = fft(i*fftsize:i*fftsize+fftsize);
8         clear plot;
9         plot(w,fftdata);
10 endfor
11
12 pause;