Subversion Repositories svnkaklik

Rev

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

Rev 811 Rev 812
Line 20... Line 20...
20
 
20
 
21
n(x)=o*x +p
21
n(x)=o*x +p
22
fit n(x) "emise2449.txt" using 1:2 via o,p
22
fit n(x) "emise2449.txt" using 1:2 via o,p
23
 
23
 
24
set output "emisni_proud.png"
24
set output "emisni_proud.png"
25
plot "emise1992.txt" using 1:2 with points title "1992 K", f(x), "emise2061.txt" using 1:2 with points  title "2061 K",g(x) , "emise2233.txt" using 1:2 with points  title "2233 K", h(x),  "emise2343.txt" using 1:2 with points title "2343 K", l(x),  "emise2449.txt" using 1:2 with points  title "2449 K", n(x)
25
plot "emise1992.txt" using 1:2 with points title "1992 K", f(x) title "", "emise2061.txt" using 1:2 with points  title "2061 K",g(x) title "" , "emise2233.txt" using 1:2 with points  title "2233 K", h(x) title "",  "emise2343.txt" using 1:2 with points title "2343 K", l(x) title "",  "emise2449.txt" using 1:2 with points  title "2449 K", n(x) title ""
26
 
26
 
-
 
27
set print "emise_fit.txt"
27
 
28
 
-
 
29
print f(0)
-
 
30
print g(0)
-
 
31
print h(0)
-
 
32
print l(0)
-
 
33
print n(0)
-
 
34
 
-
 
35
set key off
-
 
36
set ylabel "Teplota katody [K]"
-
 
37
set xlabel "Příkon žhavení [W]"
-
 
38
 
-
 
39
set output "zhaveni.png"
-
 
40
plot "zhaveni.txt" using 1:2 with points
28
 
41