how to make computations with a cell array?

12 次查看(过去 30 天)
I have a cell array:
results = {5,2};
that is:
results =
[1x5 double] [1x1 prob.NormalDistribution ]
[1x5 double] [1x1 prob.tLocationScaleDistribution]
[1x5 double] [1x1 gmdistribution ]
[1x5 double] [1x1 gmdistribution ]
[1x5 double] [1x1 struct ]
so there is 5 vectors made of 5 doubles (but the number of vectors is not important). Writing something like:
results{3,1}(2) = 3;
there are no problems: the second place of the third vector of the "first column" of the cell array becomes equal to 3.
My purpose is to compute the minimum value of the fifth places of all the vectors (in the first column of the cell array)
I have tried with:
lower = min(results{:,1}(5));
And it gives:
Bad cell reference operation.
I have tried very different ways to obtain something, but always the same error.
Is there a simple solution to my problem? Thank you in advance

采纳的回答

Guillaume
Guillaume 2015-1-29
编辑:Guillaume 2015-1-29
Yes, you can't do that. Mostly because
result{:, 1}
expands into a comma separated list which of course can't be indexed.
If all the vectors of column 1 are the same size, then the simplest thing is to convert that cell column into a matrix, and then operate on a matrix:
col1 = cell2mat(results(:, 1));
lower = min(col1(:, 5))
If the vectors are not the same size, cell2mat won't work and you have to use cellfun to extract this fifth element:
lower = min(cellfun(@(v) v(5), results(:, 1)))

更多回答(1 个)

Michael Haderlein
Michael Haderlein 2015-1-29
编辑:Michael Haderlein 2015-1-29
Dear Simo,
min(cellfun(@(x) x(5),results(:,1)))
does the job.
Best regards,
Michael

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by