# commands7.txt # # Usage: # gnuplot < commands7.txt # set term png set output 'plot7.png' set xlabel '<---X--->' set ylabel '<---Y--->' set title 'Data versus Nearest Neighbor Interpolant' set grid set style data lines plot 'data7.txt' using 1:2 with points pt 7 ps 2 lc rgb 'blue',\ 'interp7.txt' using 1:2 lw 3 linecolor rgb 'red'