Write a function to determine which elements of an array are even numbers (i.e., …, -4, -2, 0, 2, 4, …). Your function should return a logical array of the same size as the input with 1s (TRUE) in the locations corresponding to even numbers.
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Meesha Lini Eesan
el 24 de Mzo. de 2015
Respondida: Meesha Lini Eesan
el 24 de Mzo. de 2015
How could I solve this?
0 comentarios
Respuesta aceptada
Konstantinos Sofos
el 24 de Mzo. de 2015
funvtion Out = findeven(In)
Out = ~mod(In,2)
end
Assuming:
In =
-6 -5 -2 0
1 2 3 4
5 6 7 8
9 10 11 12
Out =
1 0 1 1
0 1 0 1
0 1 0 1
0 1 0 1
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!