Removing specific elements from array

Lets assume i have
a = [1 1 3 5];
c = [1 5];
i want to remove c from a and the output should be a = [1 3]
a = setdiff(a,c) %this works but it removes both the '1' .

 Respuesta aceptada

Stephen23
Stephen23 el 28 de Abr. de 2019
Editada: Stephen23 el 28 de Abr. de 2019
>> a = [1,1,3,5];
>> c = [1,5];
>> [X,Y] = ismember(c,a);
>> a(Y(X)) = []
a =
1 3

Más respuestas (0)

Categorías

Más información sobre Data Types en Centro de ayuda y File Exchange.

Preguntada:

el 28 de Abr. de 2019

Comentada:

el 28 de Abr. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by