Subversion Repositories svnkaklik

Rev

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

set terminal png

set key off
set grid
set xlabel "Výkon [uW]"
set ylabel "Index lomu [-]"

set output "index_lomu.png"

f(x)=k*x + q 
#g(x)=a*x + b

fit f(x) "./index_lomu.txt" using 1:2 via k,q 
#fit [-0.9:0.9] g(x) "./zesileni_inv.txt" using 1:2 via a,b 

plot "./index_lomu.txt" using 1:2 with points,  f(x)