12 lines
280 B
Text
12 lines
280 B
Text
|
|
#! /usr/bin/gnuplot
|
||
|
|
set title "RPiRENA"
|
||
|
|
set style data histeps
|
||
|
|
set log y
|
||
|
|
set yrange [0.9:*]
|
||
|
|
set xra [-100:1100]
|
||
|
|
set grid lt 9
|
||
|
|
set timestamp
|
||
|
|
set term png
|
||
|
|
set out "Hplot.png"
|
||
|
|
plot "Hplot.EIH" u 1:2 tit "ch 0", "" u 1:3 tit "ch 1", "" u 1:4 tit "ch 2", "" u 1:5 tit "ch 3"
|
||
|
|
unset out
|