필터 지우기
필터 지우기

Calculations for arrays inside an array

조회 수: 2 (최근 30일)
Jasmine Karim
Jasmine Karim 2018년 8월 29일
댓글: Andrei Bobrov 2018년 8월 29일
I have a 1x1 structure with 6 fields. In each field is a cell array comprised of various lengths x 8 columns. I would like to write a loop that will perform a specific calculation for EACH cell array i.e.) subtract column 5 from 4, then compute the average.
I can't seem to get the loop going, I keep getting errors such as "Cell contents reference from a non-cell array object. ".
Any suggestions are greatly appreciated.
  댓글 수: 1
Andrei Bobrov
Andrei Bobrov 2018년 8월 29일
Where is your example? Please attach an example of your structure, as a mat-file.

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

답변 (1개)

dpb
dpb 2018년 8월 29일
편집: dpb 2018년 8월 29일
Making the array content cell arrays complicates dereferencing but something like
structfun(@(c) mean(c{:}(:,5)-c{:}(:,4)),s)
works for specific column indices.
The above assumes the structure is like
>> s.f1={rand(3,4)};
>> s.f2={rand(5,4)}
s =
struct with fields:
f1: {[3×4 double]}
f2: {[3×4 double]}
>>
There's no reason that the struct needs the arrays as cell arrays, though, each field content is independent so you can have differing-sized double arrays and use direct addressing --
>> s.f1=rand(3,4);
>> s.f2=rand(5,4)
s =
struct with fields:
f1: [3×4 double]
f2: [5×4 double]
>>
Then, it's just
structfun(@(c) mean(c(:,5)-c(:,4)),s)
as structfun pass each field in turn which is now just a double array instead of cell containing a double array.
Of course, if your structure is some other perturbation, we'll need to know what that is to know how to dereference it properly.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by