diff options
Diffstat (limited to 'gr-radar-mono/src/utils/read_echos.m')
-rw-r--r-- | gr-radar-mono/src/utils/read_echos.m | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gr-radar-mono/src/utils/read_echos.m b/gr-radar-mono/src/utils/read_echos.m deleted file mode 100644 index 3fae47b4e..000000000 --- a/gr-radar-mono/src/utils/read_echos.m +++ /dev/null @@ -1,7 +0,0 @@ -# Read echos from file into array -function echos = read_echos(filename, len, drop) - e = read_complex_binary(filename); - n = length(e)/len-drop; - start = drop*len+1; - echos = reshape(e(start:end), len, n).'; -endfunction |