#set terminal X11
set terminal windows "Arial" 16
set autoscale
set grid

set title "rho(x)"
set xlabel "Length" 0,0
set ylabel ""
plot 'output1.txt' using 2:4 title 'rho(x)' with lines
pause -1 "Hit return to continue"

set title "rho(x), Phi(x)"
plot 'output1.txt' using 2:4 title "rho(x)" with lines,\
     'output1.txt' using 2:3 title "Phi(x)" with lines
pause -1 "Hit return to continue"

set title "omega(x), omega'(x)"
plot 'output1.txt' using 2:5 title "omega(x)" with lines, \
     'output1.txt' using 2:6 title "omega'(x)" with lines
pause -1 "Hit return to continue"

set title "Generalized Q factor"
plot 'output1.txt' using 2:7 title "Q(x)" with lines
pause -1 "Hit return to continue"

