Using OR between elements in vector or antithesis of any(x)

1 visualización (últimos 30 días)
Eric Junaeus
Eric Junaeus el 1 de Mzo. de 2021
Comentada: Stephen23 el 2 de Mzo. de 2021
Is there a way to use an or command such as | between elements in a vector?
Alternatively:
Rather than use any(x) is there an antithetical command that returns true if any element of the vectorx is zero?
  1 comentario
Stephen23
Stephen23 el 2 de Mzo. de 2021
"is there an antithetical command that returns true if any element of the vectorx is zero?"
~all(x)
will be simpler and more efficient than anything else.

Iniciar sesión para comentar.

Respuestas (1)

Star Strider
Star Strider el 1 de Mzo. de 2021
Not certain what you wnat.
Try these (the any call is there for comparison only):
x = randi([-5 5], 1, 10);
TF1 = any(x == 0);
TF2 = find(x==0)>0;
There may be other options as well.
  2 comentarios
Eric Junaeus
Eric Junaeus el 1 de Mzo. de 2021
Thanks for the reply!
I tried to make a while loop that would search for any element that's equal to zero in my vector.
It seemed to work with the any command you posted.

Iniciar sesión para comentar.

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by