Pentad Mean
Added by Cristiano Prestrelo about 14 years ago
Hi,
I have daily data files in 365 days. I want to create pentads. It is correct to use runmean?
For example:
cdo runmean,5 ifile ofile
Thanks
Replies (1)
RE: Pentad Mean - Added by Uwe Schulzweida about 14 years ago
Hi Cristiano,
I'm not really sure what a pentad is. If you need a mean over 5 days you can use timselmean. For daily data the parameter is simple 5:
cdo timselmean,5 ifile ofileThe resulting output file will than have 73 (365/5) time steps. With runmean,5 you will get a file with 361 (365-4) time steps.
Best regards,
Uwe