How to choose subset of cell arrays?

8 visualizzazioni (ultimi 30 giorni)
Tintin Milou
Tintin Milou il 21 Feb 2015
Commentato: per isakson il 21 Feb 2015
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]}

Risposta accettata

Guillaume
Guillaume il 21 Feb 2015
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)

Più risposte (1)

per isakson
per isakson il 21 Feb 2015
Modificato: per isakson il 21 Feb 2015
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]
>>
  2 Commenti
Guillaume
Guillaume il 21 Feb 2015
I believe that either solution lose the grouping of plots.

Accedi per commentare.

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by