How to choose subset of cell arrays?

8 visualizaciones (últimos 30 días)
Tintin Milou
Tintin Milou el 21 de Feb. de 2015
Comentada: per isakson el 21 de Feb. de 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]}

Respuesta aceptada

Guillaume
Guillaume el 21 de Feb. de 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)

Más respuestas (1)

per isakson
per isakson el 21 de Feb. de 2015
Editada: per isakson el 21 de Feb. de 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 comentarios
Guillaume
Guillaume el 21 de Feb. de 2015
I believe that either solution lose the grouping of plots.
per isakson
per isakson el 21 de Feb. de 2015
Yes!

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by