# lotka_solution_commands.txt # # Usage: # gnuplot < lotka_solution_commands.txt # set term png set output 'lotka_solution.png' set xlabel '<-- t -->' set ylabel '<-- y[t] -->' set title 'MAD solution Y(T)' set grid set style data lines plot \ 'lotka_solution_data.txt' using 1:2 with lines lw 3,\ 'lotka_solution_data.txt' using 1:3 with lines lw 3 quit