create cell array of individual years from a long time series
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a matrix which is composed of a mixture of datevec and time series of measurements, e.g.
time = datevec(datenum('1966-01-01'):datenum('2009-12-03'));
data = rand(size(time,1),1);
Final = [time,data];
a = cell(length(unique(time(:,1))),1);
I would like to place all individual years in separate cells, I have created an empty cell array to house the values but am unsure about the most efficient way of moving the values from 'Final' to 'a'.
So far I have:
b = unique(Final(:,1));
for i = 1:length(a);
a{i} = Final(find(Final(:,1)==b(i)),:);
end
This works fine but I was wondering if anyone had an alternative method?
댓글 수: 0
채택된 답변
Andrei Bobrov
2012년 9월 6일
편집: Andrei Bobrov
2012년 9월 6일
try this is code (corrected)
time = datevec(datenum('1966-01-01'):datenum('2009-12-03'));
data = rand(size(time,1),1);
Final = [time,data];
[c c c] = unique(Final(:,1));
a2 = accumarray(c,Final(:,end),[],@(x){x});
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!