# exponential_commands.txt # # Usage: # gnuplot < exponential_commands.txt # set term png set output "exponential_plot.png" set xlabel 'Distance Rho' set ylabel 'Correlation C(Rho)' set title 'Exponential correlation' set grid set style data lines plot 'exponential_data.txt' using 1:2 lw 3 linecolor rgb 'blue' quit