# scatter_3d_input.txt # # Discussion: # # Have GNUPLOT read SCATTER_3D_DATA.TXT and # create a "scatter plot" of the data, that is, dots representing # each point. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 20 October 2013 # # Author: # # John Burkardt # set term png set style line 1 lt 3 pt 4 set output "scatter_3d.png" set title "Scatter Plot of 3D Data" set grid set pointsize set timestamp set view equal xyz unset key splot 'scatter_3d_data.txt' quit