How to find arrays in matrix
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Moe
le 9 Avr 2016
Modifié(e) : Azzi Abdelmalek
le 9 Avr 2016
Suppose matrix A is as follows:
A = [1;2;3;4;5];
And matrix B:
B = [1,43,23,45;4,23,64,21;2,43,23,11;3,43,21,88;5,34,23,76;7,31,23,23,88;8,34,65,34];
I want to find the matrix A in matrix B and construct matrix C:
C = [1,43,23,45;2,43,23,11;3,43,21,88;4,23,64,21;5,34,23,76];
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 9 Avr 2016
Modifié(e) : Azzi Abdelmalek
le 9 Avr 2016
Edit
[ii,jj]=ismember(A,B(:,1));
C=B(jj(ii),:)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Matrices and Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!