Rev 828 | Blame | Compare with Previous | Last modification | View Log | Download
set terminal png
set key off
set grid
set angles degrees
f(x)=k*x + q
#g(x)=I0 * (sin(x) * cos(x))**2 + a
set xlabel "d [mm]"
set ylabel "F [N]"
fit f(x) "pruraz_kondenzator.txt" using 1:4 via k,q
set output "pruraz_kondenzator.png"
plot "pruraz_kondenzator.txt" using 1:4:5 with errorbars, f(x)
set xlabel "s [mm]"
set ylabel "f (s)"
fit f(x) "pruraz_jiskriste.txt" using 1:4 via k,q
set output "pruraz_jiskriste.png"
plot "pruraz_jiskriste.txt" using 1:4 with points, f(x)