# motion_1d_commands.txt # # Usage: # gnuplot < motion_1d_commands.txt # set term png set output 'motion_1d.png' set xlabel 'X' set ylabel 'T' set title 'Brownian motion in 1D' set grid set style data lines plot 'motion_1d_data.txt' using 1:2 quit