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