Identifying missing values in matrices

1 回表示 (過去 30 日間)
Joel Schelander
Joel Schelander 2021 年 4 月 6 日
回答済み: David Fletcher 2021 年 4 月 6 日
I have two matrices. A=429x1 and B=412x1
Every number in the B matrix exists in A. However I want to find out which numbers are missing in B. Like
C=17x1

採用された回答

David Fletcher
David Fletcher 2021 年 4 月 6 日
try
idx=~ismember(B,A)
C=A(idx)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by