# predator_prey_midpoint_explicit_commands.txt # # Usage: # gnuplot < predator_prey_midpoint_explicit_commands.txt # set term png set output 'predator_prey_midpoint_explicit.png' set xlabel '<-- PREDATOR -->' set ylabel '<-- PREY -->' set title 'Predator prey: midpoint explicit' set grid set style data lines plot 'predator_prey_midpoint_explicit_data.txt' using 2:3 with lines lw 3 quit