# motion_2d_commands.txt # # Usage: # gnuplot < motion_2d_commands.txt # set term png set output "motion_2d.png" set xlabel "X" set ylabel "T" set title "Brownian motion in 1D" set grid set style data lines plot "motion_2d_data.txt" using 1:2 quit