%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function d = flagSummary(d, plotparams, parm, field); reduceData function that plots the summary of why everything was flagged sjcm %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0001 function flagSummary(d, plotparams, parm, field,thedate_day_portion); 0002 0003 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0004 % 0005 % function d = flagSummary(d, plotparams, parm, field); 0006 % 0007 % reduceData function that plots the summary of why everything was flagged 0008 % 0009 % sjcm 0010 % 0011 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 0012 0013 0014 setPlotDisplay(plotparams.plot); 0015 0016 % next we plot to see if there was any effect at all 0017 display('Plotting the Summary of the Flags'); 0018 display('No flagging will be allowed'); 0019 0020 d = packd(d, [], 'none', 'summary', plotparams, 'Flag Summary plots', field); 0021 0022 skim(d, parm, 1,thedate_day_portion); 0023 0024 0025 0026 return; 0027 0028