Two vectors different from each other at least at two points
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
asim nadeem
el 6 de Oct. de 2018
I want to compare two vectors and check whether they are different at least at two coordinates.
0 comentarios
Respuesta aceptada
jonas
el 6 de Oct. de 2018
Editada: jonas
el 6 de Oct. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!