Subversion Repositories svnkaklik

Rev

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

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