Details |
Last modification |
View Log
Rev |
Author |
Line No. |
Line |
573 |
kaklik |
1 |
set terminal postscript
|
|
|
2 |
set output "struna.ps"
|
|
|
3 |
set key under
|
|
|
4 |
set xlabel "# harmonics"
|
|
|
5 |
set ylabel "frequency"
|
|
|
6 |
F=4.91
|
|
|
7 |
f(x)=(x+1)*1/2*sqrt(F/Ro)
|
|
|
8 |
fit f(x) "struna.txt" via Ro
|
|
|
9 |
plot f(x) title "approximed", "struna.txt" using 1:2 title "measured"
|
|
|
10 |
|