returning differences between two matrices
29 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Zachary Noll
le 13 Sep 2018
Réponse apportée : Paolo
le 13 Sep 2018
I am relatively new to matlab (saw lots of people bashed for asking simple questions..) I need to compare two matrices, and to return true if they are the same. If they aren't identical, I need to have the code return all of the indeces that were not equal:
for instance, I have matrices A = [1,2,3,4,5] and B = [1,2,4,4,5]. I need the code to return either the index of the unequal variable or some other indicating factor.
Thanks!
0 commentaires
Réponse acceptée
madhan ravi
le 13 Sep 2018
Modifié(e) : madhan ravi
le 13 Sep 2018
Index = find(A~=B)
0 commentaires
Voir également
Catégories
En savoir plus sur Get Started with MATLAB 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!