Two vectors different from each other at least at two points
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to compare two vectors and check whether they are different at least at two coordinates.
0 commentaires
Réponse acceptée
jonas
le 6 Oct 2018
Modifié(e) : jonas
le 6 Oct 2018
sum(abs(V1-V2)~=0)>=2
Will output 1 if they differ at two or more indices. You may want to set a tolerance if they are floating point numbers.
tol=0.01
sum(abs(V1-V2)>tol)>=2
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Elementary Math dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!