Trying to make every odd number zero in a vector

7 views (last 30 days)
I have a variable x = 1:100;
I am trying to make the y have every odd number be zero, how do I do that?

Answers (1)

Bhaskar R
Bhaskar R on 5 Dec 2019
x(find(mod(x, 2))) = 0;
or
x(1:2:end) = 0;

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!