How to choose subset of cell arrays?

7 次查看(过去 30 天)
Hi all,
I have the following problem: I have 30 experiments and would like to plot them several graphs. The user should be able to decide which experiments to plot on the same graph and which on different ones. For that I introduced a cell array, e.g.
plotselect = {[2 5],[4]}
Here, experiments 2 and 5 shall be plotted on the same graph, whereas experiment 4 shall be plotted on a second graph. I also allow the user to choose which experiments (out of 30) to run in the first place.
expselect = [1:4];
That runs the first four experiments. As you can see, the user might want to run more experiments than what he's actually going to plot. But the values in plotselect must be a subset of expselect. How can I retrieve the values in plotselect that are also in expselect? That is, I'd like to get
plotselect = {[2],[4]}

采纳的回答

Guillaume
Guillaume 2015-2-21
As per's answer, you need to use intersect. A cellfun lets you keep the original structure of your plotselect:
plotselect = {[2 3 5], [3 4 6], 2};
expselect = 1:4;
plotselect = cellfun(@(v) intersect(v, expselect), plotselect, 'UniformOutput', false)

更多回答(1 个)

per isakson
per isakson 2015-2-21
编辑:per isakson 2015-2-21
Hint:
>> intersect( expselect, cell2mat( plotselect ) )
ans =
2 4
>>
This assumes that all cells in plotselect contain numerical rows or scalars.
After a second reading of the question
>> num2cell( intersect( expselect, cell2mat( plotselect ) ) )
ans =
[2] [4]
>>

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by