Rev Author Line No. Line
3492 kaklik 1 set terminal png size 800,640
2  
3 set output "Frequency_time.png"
4 set xdata time
5 set timefmt "%s"
6 set format x "%H:%M:%S"
7 set key under
8 set xlabel "Time"
9 set ylabel "Freq deviation [Hz]"
10 f0=140000000
11 plot "temperature.log" using 1:($3-f0) with linespoints title "CLKGEN01B 140 MHz"
12