%This program is incomplete. You need to add code so it works as %described in the comment lines. % %Personal info and program description goes here % %"housekeeping" comands %loads the data file 'gc_dschrg_03.dat' hr_flow= %hourly flow measurement (cfs) no_hrs=length(hr_flow); %create a variable equal to the number of hours no_days=floor(no_hrs/24); %create a variable equal to the number of days no_wks= %create a variable equal to the number of weeks [day_flow,day]=daily(hr_flow,no_days); %calls the function "daily" [ , ]=weekly( , ); %calls the function "weekly" plot %your code should include commands to plot the weekly average flow %vs. weeks as a dotted line and put proper titles and labels (w/ units) %on the axes of the graph