aisd_lab/lab3/zad3/gnuplot/kn2/time_n.gp

15 lines
328 B
Text
Raw Normal View History

2024-05-09 02:53:08 +02:00
set title "Average time / n, n ∈ {100, 200, ..., 50000}"
set style data lines
set xlabel "n"
set ylabel "Average time / n"
set term pdfcairo font "JetBrainsMono-NF,12"
2024-05-09 11:54:54 +02:00
plot "./results/kn2" \
2024-05-09 02:53:08 +02:00
using 1:16 t "Select 3", \
"" using 1:19 t "Select 5", \
"" using 1:22 t "Select 7", \
"" using 1:25 t "Select 9"
# vim: ft=gnuplot