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 [-160:-60]
|
|
|
|
set key bottom left
|
|
|
|
set grid
|
|
|
|
set grid mxtics
|
|
|
|
set logscale x
|
|
|
|
|
|
|
|
set output "noise.pdf"
|
|
|
|
set title "Fazni sum"
|
|
|
|
|
2022-07-09 17:40:21 +02:00
|
|
|
plot "oeo1.csv" u 1:2 w lines title "oeo1",\
|
|
|
|
"oeo2.csv" u 1:2 w lines title "oeo2",\
|
|
|
|
"oeo3.csv" u 1:2 w lines title "oeo3",\
|
|
|
|
"oeo4.csv" u 1:2 w lines title "oeo4",\
|
|
|
|
"oeo5.csv" u 1:2 w lines title "oeo5",\
|
|
|
|
"oeo6.csv" u 1:2 w lines title "oeo6",\
|
|
|
|
"oeo7.csv" u 1:2 w lines title "oeo7",\
|
|
|
|
"veriga1.csv" u 1:2 w lines title "vcxo1",\
|
|
|
|
"veriga2.csv" u 1:2 w lines title "vcxo2",\
|
|
|
|
"veriga3.csv" u 1:2 w lines title "vcxo3"
|