File size: 715 Bytes
6fa23b0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/bin/bash
# Results bash script
# author: abubakar sani ali


# Experiment 1: wideband, 5GHz, csc = 0
python3 results/Anti_Jam.py 0 5 0

# Experiment 2: wideband, 5GHz, csc = 0.2
python3 results/Anti_Jam.py 0 5 0.2

# Experiment 3: wideband, 2.4GHz, csc = 0
python3 results/Anti_Jam.py 0 2.4 0

# Experiment 4: wideband, 2.4GHz, csc = 0.2
python3 results/Anti_Jam.py 0 2.4 0.2

# Experiment 5: broadband, 5GHz, csc = 0
python3 results/Anti_Jam.py 1 5 0

# Experiment 6: broadband, 5GHz, csc = 0.2
python3 results/Anti_Jam.py 1 5 0.2

# Experiment 7: broadband, 2.4GHz, csc = 0
python3 results/Anti_Jam.py 1 2.4 0

# Experiment 8: broadband, 2.4GHz, csc = 0.2
python3 results/Anti_Jam.py 1 2.4 0.2

echo All Done!