Subversion Repositories svnkaklik

Rev

Rev 812 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download

set terminal png

set key under
set grid
set angles degrees
set xlabel "Anodové napětí [V]"
set ylabel "Anodový proud [mA]"

f(x)=k*x +q
fit f(x) "emise1992.txt" using 1:2 via k,q

g(x)=a*x +b
fit g(x) "emise2061.txt" using 1:2 via a,b

h(x)=c*x +d
fit h(x) "emise2233.txt" using 1:2 via c,d

l(x)=e*x +m
fit l(x) "emise2343.txt" using 1:2 via e,m

n(x)=o*x +p
fit n(x) "emise2449.txt" using 1:2 via o,p

set output "emisni_proud.png"
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)