# cluster_input.txt # # Discussion: # # Input to GNUPLOT, causing it to read CLUSTER_DATA.TXT and # create a plot of the data. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 03 June 2012 # # Author: # # John Burkardt # set term png set output "cluster.png" set style data linespoints set yrange [0:*] set title "Number of Clusters vs Total Energy, Normalized Data" set grid set timestamp plot "cluster_data.txt" quit