Subversion Repositories svnkaklik

Rev

Rev 723 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 723 Rev 738
1
set terminal png
1
set terminal png
2
set output "graf.png"
2
set output "grafphase.png"
3
#set xrange [0:10000]
3
#set xrange [0:10000]
4
#set yrange [0:2]
4
#set yrange [0:2]
5
set key bottom
5
set key bottom
6
set logscale x
6
set logscale x
7
set xlabel "Frequency [Hz]"
7
set xlabel "Frequency [Hz]"
8
set ylabel "Phase [°]"
8
set ylabel "Phase [°]"
9
plot "hodnoty.txt" using 1:4 with line title "Phase"
9
plot "hodnoty.txt" using 1:4 with line title "Phase"
10
set output "grafamp.png"
10
set output "grafamp.png"
11
set key bottom
11
set key bottom
12
set logscale x
12
set logscale x
13
set logscale y
13
set logscale y
14
set yrange [0.01:0.1]
14
set yrange [0.01:0.1]
15
set xlabel "Frequency [Hz]"
15
set xlabel "Frequency [Hz]"
16
set ylabel "Amplitude [-]"
16
set ylabel "Amplitude [-]"
17
plot "hodnoty.txt" using 1:($3/$2) with line title "Amplitude"
17
plot "hodnoty.txt" using 1:($3/$2) with line title "Amplitude"
18
 
18