# two_files_input.txt # # Discussion: # # Have GNUPLOT create a plot of the data in two files. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 14 October 2013 # # Author: # # John Burkardt # set term png set output "two_files.png" set grid set style data linespoints set title "Draw data from two files on one plot." set timestamp plot "two_files_1.txt" title "Linear", "two_files_2.txt" title "quadratic" quit