Ticket #2549: rc.gnuplot

File rc.gnuplot, 501 bytes (added by Martin Sjölund, 11 years ago)
Line 
1set term pdf
2set datafile separator ","
3set xlabel "time [s]"
4set ylabel "Voltage [V]"
5set output "RC-res.pdf"
6set style line 1 linecolor rgb "red" lt 1 lw 2 pi 20 ps 1
7set style line 2 linecolor rgb "green" lt 2 lw 2 pi 20 ps 1
8set style line 3 linecolor rgb "blue" lt 4 lw 2 pi 20 ps 1
9plot "RC_res.csv" using 1:"c.v" title "c.v" with linespoints ls 1, \
10 "RC_res.csv" using 1:"pv.v" title "pv.v" with linespoints ls 2, \
11 "RC_res.csv" using 1:"r.v" title "r.v" with linespoints ls 3