# stiff_midpoint_fixed_commands.txt # # Usage: # gnuplot < stiff_midpoint_fixed_commands.txt # set term png set output "stiff_midpoint_fixed.png" set xlabel "<-- T -->" set ylabel "<-- Y(T) -->" set title "Stiff ODE: midpoint fixed" set grid set style data lines plot "stiff_midpoint_fixed_data1.txt" using 1:2 with lines lw 3 lt rgb "red",\ "stiff_midpoint_fixed_data2.txt" using 1:2 with lines lw 3 lt rgb "blue" quit