blob: 68baffdc0e099de586eb4a13a4c8d64ac231e25c (
plain)
1
2
3
4
5
6
7
8
9
10
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
|