-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplot-flp.sh
More file actions
executable file
·34 lines (34 loc) · 1.22 KB
/
plot-flp.sh
File metadata and controls
executable file
·34 lines (34 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
#
# Execute the scripts whose skeleton was created
# by create-plot-scripts-skeleton.sh
#
echo "***********************"
echo "Plot noise scan"
echo "***********************"
./plot-noise-scan.sh
echo
echo "**********************************************"
echo "Decoding source long scan without back-bias"
echo "**********************************************"
./plot-source-long-scan-nobb.sh
echo
echo "**********************************************"
echo "Decoding source long scan with back-bias"
echo "**********************************************"
./plot-source-long-scan-wbb.sh
# echo "**********************************************"
# echo "Plot source short scan with low intensity"
# echo "**********************************************"
# ./plot-source-short-scan-low-intensity.sh
# echo
# echo "**********************************************"
# echo "Plot source long scan with low intensity"
# echo "**********************************************"
# ./plot-source-long-scan-low-intensity.sh
# echo
# echo "**********************************************"
# echo "Plot source short scan with high intensity"
# echo "**********************************************"
# ./plot-source-short-scan-high-intensity.sh
echo