Subversion Repositories svnkaklik

Rev

Rev 767 | Rev 776 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
767 kaklik 1
set terminal png
2
 
3
set key off
4
set grid
5
 
774 kaklik 6
f(x)=k*x+q
767 kaklik 7
 
774 kaklik 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)
14
 
767 kaklik 15
set output "Cs137_manualne.png"
16
set xlabel "Pozice okna [V]"
17
set ylabel "Intenzita [Imp]"
18
plot "Cs137_manualne.txt" using 1:2 with points
19
 
774 kaklik 20
set xrange [0:1800] 
767 kaklik 21
 
774 kaklik 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
767 kaklik 26
 
774 kaklik 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
47
 
48
set yrange [0:500] 
49
set output "vsechno.png"
50
plot "./data/vsechno.txt" using (f($1)):2 with points
51