Borrar filtros
Borrar filtros

how to delete value from one vector such that the subsequent value in other two vectors also gets deleted?

1 visualización (últimos 30 días)
Hello,
I have three column vectors of same sizes. I want to remove values 8 9 10 from the one vector (B) such that the subequent values in other two vectors (A and C) also get deleted. Similarly, I want to remove values 8 9 10 from vector C such that the subsequent values in other two vectors (A and B) also get deleted (means whole row gets deleted). How to perform this task?

Respuestas (1)

Walter Roberson
Walter Roberson el 8 de Oct. de 2021
mask = ismember(YourArray(:,2), [8 9 10]) | ismember(YourArray(:,3), [8 9 10]);
NewArray = YourArray(~mask, :);
  1 comentario
Zhou Ci
Zhou Ci el 8 de Oct. de 2021
These A,B,C are three different variables in my MATLAB workspace. And rather than using mask (means using the first line of code and getting logical), I want these three separately. Becuase for my further work I'm using them separately. Result should be like:

Iniciar sesión para comentar.

Categorías

Más información sobre Author Block Masks 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