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

조회 수: 1 (최근 30일)
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!

채택된 답변

Matt J
Matt J 2022년 6월 26일
편집: Matt J 2022년 6월 26일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by