output png

This is a simple gnuplot script for a png file:

set terminal png medium
set output "ave_psi.png"
set title 'Position Expectation Value'
set xlabel 'time (period)'
set ylabel 'position'
set xrange [0:3]
set xtics 0.5
set yrange [-1:1]
set ytics 0.2
set nokey
plot 'ave_psi2.data' w lines

Output:
ave_psi.png

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License