Subversion Repositories svnkaklik

Rev

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

Rev 579 Rev 580
Line 1... Line 1...
1
#set terminal postscript
1
set terminal postscript
2
#set output "quinck.ps"
2
set output "quinck.ps"
3
set key off
3
set key off
4
set xlabel "frequency"
4
set xlabel "frequency [Hz]"
5
set ylabel "wave lenght"
5
set ylabel "wavelenght [m]"
6
f(x)=v/x
6
f(x)=v/x
7
fit f(x) "quinck.txt" via v
7
fit f(x) "quinck.txt" via v
8
plot f(x) title "approximed", "quinck.txt" using 1:2:3 with errorbars title "measured"
8
plot f(x), "quinck.txt" using 1:2:3 with errorbars
9
#plot "quinck.txt" using 1:2
9
#plot "quinck.txt" using 1:2
10
 
10