aboutsummaryrefslogtreecommitdiff
path: root/scripts/plot-predict-refine
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/plot-predict-refine')
-rwxr-xr-xscripts/plot-predict-refine11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/plot-predict-refine b/scripts/plot-predict-refine
new file mode 100755
index 00000000..68baffdc
--- /dev/null
+++ b/scripts/plot-predict-refine
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+INFILE=$1
+
+grep "predict_refine/R" $INFILE > plotme.dat
+gnuplot -persist << EOF
+set xlabel "Profile radius before refinement / nm^-1"
+set ylabel "Profile radius after refinement / nm^-1"
+plot "plotme.dat" using 4:7
+replot x
+EOF