# logistic_exact_commands.txt # # Usage: # gnuplot < logistic_exact_commands.txt # set term png set output 'logistic_exact.png' set xlabel '<-- t -->' set ylabel '<-- y(t) -->' set title 'logistic_exact:' set grid set style data lines plot 'logistic_exact_data.txt' using 1:2 with lines lw 3,\ 'logistic_exact_data.txt' using 1:3 with lines lw 3,\ 'logistic_exact_data.txt' using 1:4 with lines lw 3,\ 'logistic_exact_data.txt' using 1:5 with lines lw 3 quit