Mean of specific range in multiple double
조회 수: 4 (최근 30일)
이전 댓글 표시
I have a 25x5 cell called Data, each with a 15x3 double. What I would like is to calculate are:
nanmean(Data{1:25,1}(:,3)),
nanmean(Data{1:25,2}(:,3)),
nanmean(Data{1:25,3}(:,3)),
nanmean(Data{1:25,4}(:,3)),
nanmean(Data{1:25,5}(:,3)).
So, basically to calculate the mean value of the third column of the doubles for every column of the cell, thus generating 5 mean value in total. I've already tried it with
nanmean(cellfun(@(x) mean(x(:,3)), Data))
but this doesn't calculate the mean values I'm looking for.
Any help would be appreciated!
댓글 수: 2
per isakson
2014년 10월 29일
편집: per isakson
2014년 10월 29일
"doesn't calculate the mean values I'm looking for"   I think that it indeed calculates the values you describe in the question. Nevermind mean instead of nanmean
You might want to give us a small numerical example.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!