Removing repeating data points

2 次查看(过去 30 天)
Matt
Matt 2012-11-26
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
A = randi(10,3)
B = randi(10,5)
A(ismember(A(:),B(:))) = nan

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by