Replace the odd numbers in a given matrix with zero.
Example
A = [ 17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9 ]The answer should be
[ 0 24 0 8 0
0 0 0 14 16
4 6 0 20 22
10 12 0 0 0
0 18 0 2 0 ]
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers149
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15777 Solvers
-
Find the largest value in the 3D matrix
1660 Solvers
-
Create matrix of replicated elements
395 Solvers
-
07 - Common functions and indexing 6
466 Solvers
-
Find the position of first minimum value in an integer array with numbers
183 Solvers
More from this Author70
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!