Subversion Repositories svnkaklik

Rev

Rev 767 | Rev 776 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 767 Rev 774
Line 1... Line 1...
1
set terminal png
1
set terminal png
2
 
2
 
3
set key off
3
set key off
4
set grid
4
set grid
5
 
5
 
-
 
6
f(x)=k*x+q
-
 
7
 
6
#f(x)=((4*x/1000*9.81*1.15)/(E*pi*0.000195**2))*100000
8
fit f(x) "kalibrace.txt" using 1:2 via k, q
-
 
9
 
-
 
10
set output "kalibrace.png"
-
 
11
set xlabel "Číslo kanálu"
-
 
12
set ylabel "Energie [keV]"
-
 
13
plot "kalibrace.txt" using 1:2 with points, f(x)
7
 
14
 
8
set output "Cs137_manualne.png"
15
set output "Cs137_manualne.png"
9
set xlabel "Pozice okna [V]"
16
set xlabel "Pozice okna [V]"
10
set ylabel "Intenzita [Imp]"
17
set ylabel "Intenzita [Imp]"
11
plot "Cs137_manualne.txt" using 1:2 with points
18
plot "Cs137_manualne.txt" using 1:2 with points
12
 
19
 
-
 
20
set xrange [0:1800] 
-
 
21
 
-
 
22
set output "pozadi.png"
-
 
23
set xlabel "Energie [keV]"
-
 
24
set ylabel "Intenzita [Imp]"
-
 
25
plot "./data/sum.txt" using (f($1)):2 with points
-
 
26
 
-
 
27
set output "Am241.png"
-
 
28
plot "./data/Am241.txt" using (f($1)):2 with points
-
 
29
 
-
 
30
set output "Ba133.png"
-
 
31
plot "./data/Ba133.txt" using (f($1)):2 with points
-
 
32
 
-
 
33
set output "Co60.png"
-
 
34
plot "./data/Co60.txt" using (f($1)):2 with points
-
 
35
 
-
 
36
set output "Cs137.png"
-
 
37
plot "./data/cs137.txt" using (f($1)):2 with points
-
 
38
 
-
 
39
set output "neznamy.png"
-
 
40
plot "./data/neznamy.txt" using (f($1)):2 with points
-
 
41
 
-
 
42
set output "olovo1.png"
-
 
43
plot "./data/olovo1.txt" using (f($1)):2 with points
-
 
44
 
-
 
45
set output "olovo2.png"
-
 
46
plot "./data/olovo2.txt" using (f($1)):2 with points
13
 
47
 
-
 
48
set yrange [0:500] 
-
 
49
set output "vsechno.png"
-
 
50
plot "./data/vsechno.txt" using (f($1)):2 with points
14
 
51