


function allmean(cdf1,cdf2,tind,tout); compute average wind, salinity, temperature, velocity, time and elevation over tind = time steps to average over in file cdf1 tout = time step to write mean in file cdf2


0001 function allmean(cdf1,cdf2,tind,tout); 0002 %function allmean(cdf1,cdf2,tind,tout); 0003 % compute average wind, salinity, temperature, velocity, 0004 % time and elevation over 0005 % 0006 % tind = time steps to average over in file cdf1 0007 % tout = time step to write mean in file cdf2 0008 cmean(cdf1,cdf2,'salt',tind,tout); 0009 cmean(cdf1,cdf2,'temp',tind,tout); 0010 vmean(cdf1,cdf2,tind,tout); 0011 emean(cdf1,cdf2,tind,tout); 0012 taumean(cdf1,cdf2,tind,tout); 0013 tmean(cdf1,cdf2,tind,tout); 0014