From ed197662666f517277ca13d9add6f9a6384fc1f4 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Fri, 6 Jul 2012 14:15:13 -0300 Subject: [PATCH] tools/ant-cl/plot-diag: add title and labels --- tools/ant-cl/plot-diag | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/ant-cl/plot-diag b/tools/ant-cl/plot-diag index 9d8af8c..e87f2a2 100755 --- a/tools/ant-cl/plot-diag +++ b/tools/ant-cl/plot-diag @@ -18,5 +18,8 @@ fi gnuplot -p \ -e 'set style data lines' \ -e 'unset key' \ + -e "set title '$1 (`stat -c '%y' \"$1\" | sed 's/\..*//'`)'" \ + -e 'set xlabel "Pattern"' \ + -e 'set ylabel "AVcc (V)"' \ -e "plot '$1' using 0:2, '$1' using 0:3, '$1' using 0:4, '$1' using 0:5, '$1' using 0:2 with impulses lt 7"