# humps_commands.txt # # Usage: # gnuplot < humps_commands.txt # set term png set output 'humps.png' set xlabel '<-- T -->' set ylabel '<-- Y(T) -->' set title 'rk2_implicit(): Humps ODE' set grid set style data lines plot 'humps_data.txt' using 1:2 with lines lw 3 lt rgb 'red',\ 'humps_data.txt' using 1:3 with lines lw 3 lt rgb 'blue' quit