How to eliminate the elements in an array from another array when there are repeated elements in both arrays?

1 visualización (últimos 30 días)
For example,
A = [ 1,2,2,2,3,4];
B = [1,2,2,3];
What I expect is A eliminate elements from B ( 2 with exact the same number of repeats) to get C = [2,4];
Thanks!

Respuesta aceptada

Matt J
Matt J el 26 de Jun. de 2022
Editada: Matt J el 26 de Jun. de 2022
A = [ 1,2,2,2,3,4];
B = [1,2,2,3];
Au=[unique(A),inf];
reps=max( histcounts(A,Au)-histcounts(B,Au) ,0);
C=repelem(Au(1:end-1),reps)
C = 1×2
2 4

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by