# predator_prey_midpoint_fixed_commands.txt # # Usage: # gnuplot < predator_prey_midpoint_fixed_commands.txt # set term png set output "predator_prey_midpoint_fixed.png" set xlabel "<-- Prey -->" set ylabel "<-- Predator -->" set title "midpoint fixed: predator prey ODE" set grid set style data lines plot "predator_prey_midpoint_fixed_data.txt" using 2:3 with lines lw 3 quit