-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplot_IQ_value_in_channel.plot
More file actions
51 lines (37 loc) · 1.13 KB
/
plot_IQ_value_in_channel.plot
File metadata and controls
51 lines (37 loc) · 1.13 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
reset
set terminal postscript color eps 23
set size ratio 0.6
set pointsize 2
set xlabel "time";
set ylabel "I/Q value";
set nokey;
# set key Left above reverse horizontal nobox spacing 0.9
set output "iq_value.ps"
set style line 1 lc rgb "#FF0000" lt 1 lw 4
set style line 2 lc rgb "#0000FF" lt 2 lw 3
set style line 3 lc rgb "orange" lt 3 lw 3
set style line 4 lc rgb "green" lt 4 lw 3
set style line 5 lc rgb "yellow" lt 1 lw 3
set style line 6 lc rgb "black" lt 2 lw 3
set style data points
plot "h" using 1 with lines, \
"" using 2 with lines
##########################################
reset
set terminal postscript color eps 23
set size ratio 0.6
set pointsize 2
set xlabel "time";
set ylabel "I/Q value";
set nokey;
# set key Left above reverse horizontal nobox spacing 0.9
set output "iq_value_rotated.ps"
set style line 1 lc rgb "#FF0000" lt 1 lw 4
set style line 2 lc rgb "#0000FF" lt 2 lw 3
set style line 3 lc rgb "orange" lt 3 lw 3
set style line 4 lc rgb "green" lt 4 lw 3
set style line 5 lc rgb "yellow" lt 1 lw 3
set style line 6 lc rgb "black" lt 2 lw 3
set style data points
plot "h" using 3 with lines, \
"" using 4 with lines