comparing the missing value

조회 수: 1 (최근 30일)
Anusha
Anusha 2014년 4월 26일
답변: Azzi Abdelmalek 2014년 4월 26일
I have a vetor
a= [3 4 5 1 9 2 0]
b= [4 0 5 9 1 2]
b matrix miss value
compare two matrix..
The missing value added to the b from a

답변 (2개)

pietro
pietro 2014년 4월 26일
편집: pietro 2014년 4월 26일
Here one solution:
a= [3 4 5 1 9 2 0];
b= [4 0 5 9 1 2];
b=b(find(ismember(a,intersect(a,b))==0))
  댓글 수: 1
Anusha
Anusha 2014년 4월 26일
Its not working

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


Azzi Abdelmalek
Azzi Abdelmalek 2014년 4월 26일
a= [3 4 5 1 9 2 0]
b= [4 0 5 9 1 2]
out=setdiff(a,b)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by