IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

nebulous-performance-analysis: template.gnuplot

File template.gnuplot, 370 bytes (added by Serge CHASTEL, 15 years ago)
Line 
1# Template for gnuplot. All arguments are strings
2# 0 = file base name
3# 1 = xlabel
4# 2 = ylabel
5# 3 = <extra set instructions...>
6# 4 = field #/function for x axis
7# 5 = field #/function for y axis
8# 6 = title
9mega(x) = x /1000000
10kilo(x) = x /1000
11set terminal jpeg
12set output 'total_%s.jpg'
13set xlabel '%s'
14set ylabel '%s'
15%s
16plot '../results' using %s:%s title '%s'