How to compare two columns in a table and delete that row having same values in that columns?

1 visualización (últimos 30 días)
column1 column 2 columns3
ball bat gloves
bat gloves bat
ball gloves ball
Mow if I compare column1 and column3, I want to remove the rows having same values in that row of the columns

Respuestas (2)

dpb
dpb el 12 de Abr. de 2021
c=string({'column1' 'column 2' 'columns3'
'ball' 'bat' 'gloves'
'bat' 'gloves' 'bat'
'ball' 'gloves' 'ball'});
c=c(c(:,1)~=c(:,3),:);
returns
>> c
c =
2×3 string array
"column1" "column 2" "columns3"
"ball" "bat" "gloves"
>>
I kept the header row to have something else in the array as a result...

Sanwal Zeb
Sanwal Zeb el 18 de Abr. de 2021
Hi, I want to do this in tables not in strings.
  1 comentario
dpb
dpb el 18 de Abr. de 2021
Well, we'll have to see what you really have to write actual syntax...we can't see your workspace from here...

Iniciar sesión para comentar.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by