# damped_sine_commands.txt # # Usage: # gnuplot < damped_sine_commands.txt # set term png set output "damped_sine.png" set xlabel "Distance Rho" set ylabel "Correlation C(Rho)" set title "Damped sine correlation" set grid set style data lines plot "damped_sine_data.txt" using 1:2 lw 3 linecolor rgb "blue" quit