Borrar filtros
Borrar filtros

Output of a vector which excludes the entries of the second vector

1 visualización (últimos 30 días)
Hello,
Problem: Given two distinct integer vectors p and q. I'd like to get a new vector r, that is p excluding the entries of q.
For example,
p = [1 2 3 4 5 6 7 8], q = [2 5 7 9], then r = [1 3 4 6 8].
Hope to have a code in a singer line. Thanks.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 1 de Dic. de 2012
Editada: Azzi Abdelmalek el 1 de Dic. de 2012
p = [1 2 3 4 5 6 7 8],
q = [2 5 7 9],
out=p(~ismember(p,q))
  3 comentarios

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 1 de Dic. de 2012
r = setdiff(p, q);
  3 comentarios
Walter Roberson
Walter Roberson el 1 de Dic. de 2012
Note that the two answers are slightly different, having to do with the ordering of the outputs if the first vector is not sorted. setdiff() also has a 'stable' option to get the outputs in the original order.

Iniciar sesión para comentar.

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