# brownian_plots_commands.txt # # Usage: # gnuplot < brownian_plots_commands.txt # set term png set key off set output "brownian_plots.png" set title "Brownian correlation C(S,T), S = 0.25, 1.5, 2.5, 3.75" set xlabel "S" set ylabel "C(s,t)" set grid set style data lines plot "brownian_plots_data.txt" using 1:2 lw 3 linecolor rgb "blue", \ "brownian_plots_data.txt" using 1:3 lw 3 linecolor rgb "blue", \ "brownian_plots_data.txt" using 1:4 lw 3 linecolor rgb "blue", \ "brownian_plots_data.txt" using 1:5 lw 3 linecolor rgb "blue" quit