Removing values form the Matrix
Afficher commentaires plus anciens
Hi, All
i have two matrix matrix A has size 2 62 matrix B has size 10 62
actually the matrix B contains also matrix A
i want to remove the matrix A from matrix B.
How i can do this
Réponse acceptée
Plus de réponses (1)
Andrei Bobrov
le 13 Mar 2013
Modifié(e) : Andrei Bobrov
le 13 Mar 2013
in your case:
B = randi(100,10,62);
A = B(4:5,:);
B(end,:) = A(1,:); % your data
[a,ii] = ismember(B,A,'rows');
iii = 1:size(A,1);
i1 = strfind(ii(:)',iii) + iii - 1;
B(i1,:) = [];
3 commentaires
M@lik Ali
le 13 Mar 2013
Andrei Bobrov
le 13 Mar 2013
corrected
Azzi Abdelmalek
le 13 Mar 2013
This solution is more general
Catégories
En savoir plus sur Multidimensional Arrays 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!