Removing elements from an Array

조회 수: 9 (최근 30일)
CharlesB
CharlesB 2018년 6월 22일
댓글: Jan 2018년 6월 22일
I have two arrays:
A = [0, 1]; and B = [0, 1, 3, 1, 4, 5, 6];
I want to compare the first element of A to the first 3 elements of B and the second element of A to the next 4 elements of B. If the elements of A are equal I delete it from B. So in simple:
if (A(1) == B(1:3))
delete A(1) from B
Similarly
if (A(2) == B(4:7))
delete A(2) from B
Is there any way I can do this without having to enter the indices in a hard coded manner?
So in the end B should have the following elements:
B = [1, 3, 4, 5, 6];
  댓글 수: 3
CharlesB
CharlesB 2018년 6월 22일
Sorry for not being clear the first array A will always have elements in the following sequential order 0, 1, 2 ..... The second Array B will always have an element of B so B can be [0,1,2, 0,1, 3, 1,2,5] and B has to become [1,2, 0,3, 1,5] as I removed the elements of B after comparing them as I explained above. The wanted outputs for B1 = [1,2, 0, 2]; For B2 = [2,3]; For B3 = [1,1,2, 2]. In this case I compared the elements of A for every 3 elements of B. In the above example I compared A(1) to the first 3 elements of B and A(2) to the next 4 elements of B. The comparison between 1 element of A to the elements of B can vary. What does not change is the sequential elements of A they will always b 0, 1, 2, 3,... Please stick to my question as it will get even more confusing.
Jan
Jan 2018년 6월 22일

댓글을 달려면 로그인하십시오.

채택된 답변

KSSV
KSSV 2018년 6월 22일
편집: KSSV 2018년 6월 22일
A = [0, 1];
B = [0, 1, 3, 1, 4, 5, 6];
C{1} = B(1:3) ;
C{2} = B(4:end) ;
for i = 1:2
C{i}(C{i}==A(i))=[] ;
end
cell2mat(C)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by