Borrar filtros
Borrar filtros

How to Select a distinct subset of a CellArray

1 visualización (últimos 30 días)
Léon
Léon el 17 de Jun. de 2013
Hello,
please consider the following problem:
x = {1,1;1,2;1,3;2,1;2,2}
[C,IA,IC] = unique(x(:,1))
C(1) % ==> is 1, now I want to get all rows of x where we have a 1 in the first column.
Would be super glad to get a tip how to achieve that!

Respuestas (2)

David Sanchez
David Sanchez el 17 de Jun. de 2013
v = find(x(:,1)==C(1))

Andrei Bobrov
Andrei Bobrov el 17 de Jun. de 2013
x = [1,1;1,2;1,3;2,1;2,2];
out = x(x(:,1) == 1,:);

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by