Removing repeating data points

Ive got two matrices of different sizes; matrix A is smaller than Matrix B
Some of the numbers in Matrix A are in Matrix B i want to remove these, how can i do this?

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2012 年 11 月 26 日

1 投票

A = randi(10,3)
B = randi(10,5)
A(ismember(A(:),B(:))) = nan

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

質問済み:

2012 年 11 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by