blob: 5af7b39c924026e3d475421332d60c0e9549f534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
replot 1.2*x
EOF
|