Removing repeating data points
Afficher commentaires plus anciens
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?
Réponses (1)
Andrei Bobrov
le 26 Nov 2012
A = randi(10,3)
B = randi(10,5)
A(ismember(A(:),B(:))) = nan
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!