aboutsummaryrefslogtreecommitdiff
path: root/unittest/fading_files.sh
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2025-07-25 10:17:14 +0300
committerMarin Ivanov <[email protected]>2026-01-18 20:09:26 +0200
commit0168586485e6310c598713c911b1dec5618d61a1 (patch)
tree6aabc2a12ef8fef70683f5389bea00f948015f77 /unittest/fading_files.sh
Initial commitHEADmaster
* codec2 cut-down version 1.2.0 * Remove codebook and generation of sources * remove c2dec c2enc binaries * prepare for emscripten
Diffstat (limited to 'unittest/fading_files.sh')
-rwxr-xr-xunittest/fading_files.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/unittest/fading_files.sh b/unittest/fading_files.sh
new file mode 100755
index 0000000..9fe17f3
--- /dev/null
+++ b/unittest/fading_files.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env bash
+#
+# Generate fading files used for channel simulation
+
+output_path=$1
+echo "Generating fading files ......"
+cmd='cd ../octave; pkg load signal; ch_fading("'${output_path}'/fast_fading_samples.float", 8000, 1.0, 8000*60)'
+octave --no-gui -qf --eval "$cmd"
+[ ! $? -eq 0 ] && { echo "octave failed to run correctly .... exiting"; exit 1; }
+cmd='cd ../octave; pkg load signal; ch_fading("'${output_path}'/faster_fading_samples.float", 8000, 2.0, 8000*60)'
+octave --no-gui -qf --eval "$cmd"
+[ ! $? -eq 0 ] && { echo "octave failed to run correctly .... exiting"; exit 1; }
+exit 0
+