How to convert arrays out of cells

2 views (last 30 days)
Oliver Makan
Oliver Makan on 14 Nov 2019
Edited: Adam Danz on 15 Nov 2019
Hi Guys,
I wanted to convert the fields of the structure into variables to correlate them with each other.
Manually I just click on them an transfer them into workspace as a cell array. Like you see at the bottom I get a code like this with incremental values.
Is there a possibilitiy to do this with an for loop or something like this that it generates my cells automatically out of the structure.
Thank you for your help.
000003.jpg

Answers (1)

Adam Danz
Adam Danz on 14 Nov 2019
Edited: Adam Danz on 15 Nov 2019
Generating variables within a loop involves dynamic variable naming which should be avoided at all cost. Instead, since your arrays appear to be all the same size, it would be much better to pack them into a matrix or a cell array. A matrix would make it very easy to compute correlations between variables. For example, corrcoef(A) computes correlation coefficients for each column of A. Here's a demo using a structure that is similar to yours.
% Create structure
SAM.Inn(1).Ri = rand(1,100);
SAM.Inn(1).Diff = rand(1,100);
SAM.Inn(2).Ri = rand(1,100);
SAM.Inn(2).Diff = rand(1,100);
SAM.Inn(3).Ri = rand(1,100);
SAM.Inn(3).Diff = rand(1,100);
SAM.Inn(4).Ri = rand(1,100);
SAM.Inn(4).Diff = rand(1,100);
% Put all "Ri" into a matrix where each column is a field from SAM.Inn
Ri = cell2mat({SAM.Inn.Ri}.'); % Or, see Stephen's comment below.
% Compute correlation coefficients
cc = corrcoef(Ri);
If you'd rather work with cell arrays or if your data do not have the same number of observations,
Ri = {SAM.Inn.Ri};
  1 Comment
Stephen23
Stephen23 on 15 Nov 2019
Without the intermediate cell array and slow cell2mat:
Ri = vertcat(SAM.Inn.Ri).';

Sign in to comment.

Categories

Find more on Cell Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!