Borrar filtros
Borrar filtros

logical indexing in one line when choosing from a column

1 visualización (últimos 30 días)
Theo
Theo el 18 de Feb. de 2015
Respondida: Stephen23 el 18 de Feb. de 2015
I want to choose a column vector from a matrix and do the logical indexing on it. For example
chosen=matrix(:,1);
chosen=chosen(idx);
where in above idx is a logical index vector. Now my problem is I don't want to do it in two lines, I'm thinking about something like
chosen=matrix(:,1)(idx);
now I know the above expression is wrong, but is there a valid replacement for that? Thanks

Respuesta aceptada

Stephen23
Stephen23 el 18 de Feb. de 2015
matrix(idx,1)

Más respuestas (1)

Erik S.
Erik S. el 18 de Feb. de 2015
you can use the find function instead

Categorías

Más información sobre Matrix Indexing 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