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