comparing categorical arrays in terms of content
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alpedhuez
el 24 de En. de 2021
Comentada: alpedhuez
el 24 de En. de 2021
I have two categorical arrays A and B. I want to idenitfy
- common elements of A and B
- elements that are in one of them but not in both of them
3 comentarios
KALYAN ACHARJYA
el 24 de En. de 2021
@Matt Gaidica provided the suffcient information, just use ismember, it is simple. Please refer MATLAB doc.
Respuesta aceptada
Adam Danz
el 24 de En. de 2021
ismember alone can answer the first point (common elements of A and B) but not the 2nd since it only tests whether elements of A are in B but not whether elements of B are in A. For example,
A = categorical({'a' 'b' 'c' 'e'}');
B = categorical({'a' 'b' 'c' 'd'}');
[LIA,LOCB] = ismember(A,B)
setxor can show their differences.
[C,~,~] = setxor(A,B)
3 comentarios
Adam Danz
el 24 de En. de 2021
Check out the first sentence of the documentation for each function. If that's not clear I'd be happy to explain.
You could also experiment to see what the differences are .
A = categorical({'a' 'b' 'c' 'e'}');
B = categorical({'a' 'b' 'c' 'd'}');
setdiff(A,B)
setdiff(B,A)
setxor(A,B)
setxor(B,A)
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion 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!