필터 지우기
필터 지우기

How do I average a time series with uneven intervals?

조회 수: 10 (최근 30일)
Anna
Anna 2013년 6월 28일
Hi,
I have a time series which has vector values recorded at a frequency greater than 1 hz (1 measurement per second) with uneven intervals and I would like to average the vector values for each second so that I effectively have a time series with a 1 hz frequency.
Is it possible to create a loop with variable increments to achieve this? Or might ACCUMARRAY be more suitable?
Here is an example of my data set.
Time SO4 77237.3 0.165 77247.3 0.177 77276 0.137 77304.4 0.093 77304.4 0.093 77332.8 0.103 77361.3 0.072
Any help would be greatly appreciated. Thanks
  댓글 수: 1
Anna
Anna 2013년 6월 28일
편집: Anna 2013년 6월 28일
I didn't realise the example data I inserted had posted as linear text. I'm not sure how to rectify this so apologies but I hope it's clear that the 'Time' data is 77237.3, 77247.3, 77276.0 ...and the SO4 data is 0.165, 0.177, 0.137...

댓글을 달려면 로그인하십시오.

채택된 답변

Roger Stafford
Roger Stafford 2013년 6월 28일
One possibility is to use 'interp1' set to interpolate at some appropriate multiple of one hertz, say, 20 Hz. You can select the type of interpolation that best suits your data. Read the documentation at
http://www.mathworks.com/help/matlab/ref/interp1.html
Then take a straightforward average over each twenty (or whatever multiple you choose) points to get the average for the corresponding second.
  댓글 수: 1
Anna
Anna 2013년 7월 14일
Thank you for your reply Roger Stafford! I have been trying to use 'interp1' but am still having some problems. I was able to use interp1 successfully for the above example because the two vectors were the same length.
I have another variable 'CCN' which has 9000 data points at a 1 hz frequency and I want to compare this to the 'Time' variable which has 300 data points. The range I am trying to compare in the two variables is from 77237 seconds (from 00 UTC) to 86357 seconds.
Here is my code: for k = 1:1:303 Time(end:end+numel(CCN)-numel(Time))=nan; CCN_new = interp1(Time,CCN,(77237:86357)) but I get the followig error message Error using griddedInterpolant The coordinates of the input points must be finite values; Inf and Nan are not permitted. Error in interp1>Interp1D (line 346) F = griddedInterpolant(Xext,V,method); Error in interp1 (line 241) Vq = Interp1D(X,V,Xq,method); Is there a way of making the vectors the same length without adding 'Nan' to the shorter one?
Please help if you can, Thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by