# white_noise_commands.txt # # Usage: # gnuplot < white_noise_commands.txt # set term png set output "white_noise_plot.png" set xlabel "Distance Rho" set ylabel "Correlation C(Rho)" set title "White noise correlation" set grid set style data lines plot "white_noise_data.txt" using 1:2 lw 3 linecolor rgb "blue" quit