# P. Conrad, Fall 2005 sineWaveOneCycle.gnuplot # Generate a graphic of one cycle of a sine wave # put output into sineWaveOneCycle.png set term png small color set size 0.5,0.5 set output "sineWaveOneCycle.png" set xrange [0:2*pi]; set yrange [-1:1]; plot sin(x);