How can I determine if elements in an array are equal to a scalar
Mostrar comentarios más antiguos
I have an array like the following
a = {[1] [3] ['A'];[3] [1,2] []};
and I want to check to see if each element of the array is equal to 3 or something, so I would want an output like this:
Output = [0,1,0;1,0,0];
This seems like something that should be easy to do but I can't figure it out. I tried doing
Output = cellfun(@eq,a,3)
But that doesn't seem to work.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!