inicjalizacja zad2

This commit is contained in:
2016-10-31 12:46:45 +01:00
parent 8d03243fe7
commit a5e6a31962
7 changed files with 296 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,19 @@
#set terminal x11
set terminal jpeg
set xrange [0:16]
set yrange [0:6]
set xlabel "Liczba watkow [n]"
set ylabel "Przyspieszenie [n]"
set out "przyspieszenie.jpg"
plot \
"wyniki.txt" using 1:3 with points ls 3 lc rgb "red" title "przyspieszenie", \
"wyniki.txt" using 1:3 with lines ls 3 lc rgb "blue" notitle
set out "czas.jpg"
set ylabel "Czas obliczen [ms]"
set yrange [0:16000]
plot \
"wyniki.txt" using 1:2 with points ls 3 lc rgb "red" title "czas", \
"wyniki.txt" using 1:2 with lines ls 3 lc rgb "blue" notitle