2022-07-09 18:53:14 +02:00
|
|
|
#!/usr/bin/gnuplot
|
|
|
|
|
|
|
|
set datafile separator ","
|
|
|
|
set terminal pdf
|
|
|
|
|
|
|
|
set xlabel "Frequency offset (Hz)"
|
|
|
|
set ylabel "Phase noise (dBc/Hz)"
|
|
|
|
set format x "10^{%T}"
|
|
|
|
set xrange [100:100000]
|
|
|
|
set yrange [-150:-50]
|
|
|
|
set key bottom left
|
|
|
|
set grid
|
|
|
|
set grid mxtics
|
|
|
|
set logscale x
|
|
|
|
|
|
|
|
set output "floor.pdf"
|
|
|
|
set title "Noise floors"
|
|
|
|
|
2022-07-09 17:40:21 +02:00
|
|
|
plot "floor-oeo-1m.csv" u 1:2 w lines title "oeo 1m",\
|
|
|
|
"floor-oeo-2m.csv" u 1:2 w l t "oeo 2m",\
|
|
|
|
"floor-veriga-1m.csv" u 1:2 w l t "veriga 1m",\
|
|
|
|
"floor-veriga-2m.csv" u 1:2 w l t "veriga 2m"
|