21 lines
487 B
Text
21 lines
487 B
Text
set border linewidth 5
|
|
|
|
set style line 101 lt 0 lc rgb "gray20" lw 0.5
|
|
set style line 102 lt 2 lc rgb "black" lw 1
|
|
|
|
set xlabel 'Sequence number'
|
|
set ylabel 'LFSR value'
|
|
|
|
set ytics 2500
|
|
set mytics 2
|
|
set xrange [0:65535]
|
|
set yrange [0:65535]
|
|
set xtics 2500 rotate by 60 right
|
|
set mxtics 2
|
|
set tics scale 1
|
|
|
|
set title "16-bit LFSR: Taps $"
|
|
|
|
set terminal png size 3840,2160 font 'Fira Code Nerd Font,30'
|
|
set output "plot.png"
|
|
plot "16bit.txt" using 1:2 notitle with points lc 14 pt 6 ps 0.5
|