You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
528 B

  1. #set terminal x11
  2. set terminal jpeg
  3. set xrange [0:25]
  4. set yrange [0:10]
  5. set xlabel "Liczba procesow [n]"
  6. set ylabel "Przyspieszenie [n]"
  7. set out "przyspieszenie.jpg"
  8. plot \
  9. "wyniki.txt" using 1:3 with points ls 3 lc rgb "red" title "przyspieszenie", \
  10. "wyniki.txt" using 1:3 with lines ls 3 lc rgb "blue" notitle
  11. set out "czas.jpg"
  12. set ylabel "Czas obliczen [ms]"
  13. set yrange [0:21000]
  14. plot \
  15. "wyniki.txt" using 1:2 with points ls 3 lc rgb "red" title "czas", \
  16. "wyniki.txt" using 1:2 with lines ls 3 lc rgb "blue" notitle