How compine features or how get same elements in 2 arrays
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hajer jon
le 26 Juil 2019
Modifié(e) : madhan ravi
le 26 Juil 2019
I used Surf and MERS features extraction i need to get out the elements that found in the two arrays of points locations
0 commentaires
Réponse acceptée
KALYAN ACHARJYA
le 26 Juil 2019
Modifié(e) : madhan ravi
le 26 Juil 2019
I am considering "or" part of the question "how get same elements in 2 arrays?"
Use Intersection between two array, see detail here
See the following example, where A and B are two arrays having any lengths
>> A=1:10;
>> B=[2 3 4 5 200 100 101];
>> result=intersect(A,B)
Command Window:
result =
2 3 4 5
Hope it Helps!
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Computer Vision with Simulink 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!