Monday, November 1, 2010

gnuplot


Plotting a file with measurement data (in the range of around 0.001)
  • plot "dump.csv" notitle with lines
  • set yrange [0:0.002]
  • set xtics 0,500,1000
Output to .eps
  • set term push
    set terminal postscript eps color lw 1 "Helvetica" 20
    set out 'a.eps'
    replot
    set term pop


No comments:

Post a Comment