summaryrefslogtreecommitdiff
path: root/gr-msdd6000/src/python-examples/playback_samples.m
diff options
context:
space:
mode:
authorJohnathan Corgan2011-07-03 16:32:23 -0700
committerJohnathan Corgan2011-07-03 16:32:23 -0700
commit250998de9bf1dc3550e33309b316268f857499a2 (patch)
tree55a7e771d910067097409c143650623ad1deb124 /gr-msdd6000/src/python-examples/playback_samples.m
parentf2b3a24eeb7d37111f856ee0d14525611706bb9b (diff)
downloadgnuradio-250998de9bf1dc3550e33309b316268f857499a2.tar.gz
gnuradio-250998de9bf1dc3550e33309b316268f857499a2.tar.bz2
gnuradio-250998de9bf1dc3550e33309b316268f857499a2.zip
msdd6000: removed from tree, obsolete
Diffstat (limited to 'gr-msdd6000/src/python-examples/playback_samples.m')
-rw-r--r--gr-msdd6000/src/python-examples/playback_samples.m12
1 files changed, 0 insertions, 12 deletions
diff --git a/gr-msdd6000/src/python-examples/playback_samples.m b/gr-msdd6000/src/python-examples/playback_samples.m
deleted file mode 100644
index 332296e72..000000000
--- a/gr-msdd6000/src/python-examples/playback_samples.m
+++ /dev/null
@@ -1,12 +0,0 @@
-t = read_complex_binary('msdd.dat',10000000);
-
-fftsize=256;
-w = [0:pi/fftsize:pi];
-
-for i = 0:length(t)/fftsize
- fftdata = fft(i*fftsize:i*fftsize+fftsize);
- clear plot;
- plot(w,fftdata);
-endfor
-
-pause;