Subversion Repositories svnkaklik

Rev

Rev 867 | Blame | Compare with Previous | Last modification | View Log | Download

set terminal png

set key off
set grid

f(x)=a*x**2 + k*x + q

set xlabel "I [A]"
set ylabel "B [mT]"

set output "mag_pole.png"
fit f(x) "mag_pole.txt" using 1:2 via a,k,q
plot "mag_pole.txt" using 1:2 with points, f(x)

set xlabel "B [mT]"
set ylabel "dE [eV]"

g(x)=d*x + c
d=5.7e-5

set output "magneton.png"
fit g(x) "magneton.txt" using 2:1 via c,d
plot "magneton.txt" using 2:1 with points, g(x)