Subversion Repositories svnkaklik

Rev

Details | Last modification | View Log

Rev Author Line No. Line
886 kaklik 1
set terminal png
2
 
3
set key under
4
set grid
5
 
6
set xlabel "sample #"
7
set ylabel "Delta time [ns]"
8
set y2label "Temperature [K]"
9
 
10
set ytics 0, 0.3
11
set y2tics 0, 0.3
12
 
13
#set yrange [22.4:23.7]
14
set y2range [292:296.5]
15
 
16
set output "PIC18F4550.png"
17
plot "casy_PIC18F4550.txt" using 0:($1*1000-150243) axis x1y1 with lines title "Hit1", "" using 0:($2*1000-151408) axis x1y1 with lines title "Hit2", "" using 0:($3*1000-161575) axis x1y1 with lines title "Hit3", "teploty_PIC18F4550.txt" using 0:5  axis x1y2 with lines title "Temp" 
18