Subversion Repositories svnkaklik

Rev

Rev 573 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 573 Rev 575
Line 1... Line 1...
1
set terminal postscript
1
#set terminal postscript
2
set output "struna.ps"
2
#set output "struna.ps"
3
set key under
3
set key off
4
set xlabel "# harmonics"
4
set xlabel "# harmonics"
5
set ylabel "frequency"
5
set ylabel "frequency"
6
F=4.91
6
F=4.91
7
f(x)=(x+1)*1/2*sqrt(F/Ro)
7
f(x)=(x+1)*1/2*sqrt(F/Ro)
8
fit f(x) "struna.txt" via Ro
8
fit f(x) "struna.txt" via Ro
9
plot f(x) title "approximed", "struna.txt" using 1:2 title "measured"
9
plot f(x) title "approximed", "struna.txt" using 1:2:3 with errorbars title "measured"
-
 
10
pause 10
10
 
11