# plot the experimental bud diamters # set term x11 # set term gif size 400,300 set out 'radius.gif' set data style linespoints set title "Radius of Cycle-3 Bud at (-0.125,0.7445)" set key right set xlabel "theta" set ylabel "bud radius" plot "radius.dat" using ($2):($3) title "measured", \ "radius.dat" using ($2):(0.0945184+0.000097*sin(2*$2+3.141592653/4)) title "fit" \ # pause 1000