############################################################################ # Model BESSEL, popis výstupu pro program GNU Plot (gnuplot) # # data format: Time y y' # reset # implicitní nastavení #set output "bessel.ps"; set term postscript set grid set data style lines set title "Besselova rovnice" set key set xlabel "cas" set ylabel "y, y'" plot "bessel.dat" title "y", \ "bessel.dat" using 1:3 title "y'" with dots pause 3 #pause -1 "Stisknete ENTER" set title "Besselova rovnice - fazova rovina" set nokey set xlabel "y" set ylabel "v" plot "bessel.dat" using 2:3 with lines pause 3 #end