plot 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. set title "MvK to MvS latency simulation"
  2. set xlabel "MvS latency (ms)"
  3. set ylabel "Time (s)"
  4. plot 'model/results_mvs_latency' u 1:2 w l title "Execution time", '' u 1:3 w l title "Simulation time"
  5. set title "MvI to MvK latency simulation"
  6. set xlabel "MvI latency (ms)"
  7. set ylabel "Time (s)"
  8. plot 'model/results_mvi_latency' u 1:2 w l title "Execution time", '' u 1:3 w l title "Simulation time"
  9. set title "MvK to MvS latency influence"
  10. set xlabel "MvS latency (ms)"
  11. set ylabel "Time (s)"
  12. plot 'model/results_mvs_latency' u 1:2 w l title "Execution time"
  13. set title "MvI to MvK latency influence"
  14. set xlabel "MvI latency (ms)"
  15. set ylabel "Time (s)"
  16. plot 'model/results_mvi_latency' u 1:2 w l title "Execution time"
  17. set title "Execution time jitter"
  18. set xlabel "Execution time (s)"
  19. set ylabel "Samples"
  20. set key off
  21. set style fill solid 1.0 noborder
  22. bin_width = 5.0;
  23. set boxwidth bin_width absolute
  24. bin_number(x) = floor(x/bin_width)
  25. rounded(x) = bin_width * (bin_number(x) + 0.5)
  26. plot 'model/results_real' u (rounded($1)):(1) smooth frequency with boxes