Subversion Repositories svnkaklik

Rev

Rev 915 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
915 kaklik 1
set terminal png
2
set output "hysterezni_smycka.png"
3
 
4
set key off
5
set grid
6
set angles degrees
7
 
8
k=1
9
q=1
10
 
11
f(x)=k*x + q
12
 
13
set xlabel "H [A/m]"
14
set ylabel "D B [T]"
15
 
16
#fit f(x) "komutace_nahoru.txt" using 2:4 via k,q
917 kaklik 17
plot "komutace_nahoru.txt" using 2:($4-7) with points pt 3, "komutace_nahoru.txt" using (-$2):($6-7) with points pt 3, "komutace_dolu.txt" using 2:($4-7) with points pt 4, "komutace_dolu.txt" using (-$2):($6-7) with points pt 4
915 kaklik 18