Borrar filtros
Borrar filtros

Comparision of two different cell arrays and save in two different matrices?

2 visualizaciones (últimos 30 días)
Hi i have two cell matrices with sring values as below
a = {'hi';'hello';'hey';'oh';'hello'};
b = {'hi';'hello'};
Comman strigns in one matrix and remaining in another matrix.i need the output as
result1 = {'hi';'hello';'hello'}
result2={'hey';'oh'}
Please let me know if any one knows, Thanks in advance

Respuesta aceptada

madhan ravi
madhan ravi el 13 de Mzo. de 2019
Editada: madhan ravi el 13 de Mzo. de 2019
result1=a(ismember(a,b)).'
result2=a(~ismember(a,b)).'

Más respuestas (0)

Categorías

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