Displaying even numbers in a series

3 views (last 30 days)
I am suppose to come up with code that displays the even numbers of a series but I am a little lost. The series is a series of numbers between 1-10 with 0.5 increments.

Accepted Answer

David Hill
David Hill on 1 Dec 2022
n=1:.5:10;
n(mod(n,2)==0)
ans = 1×5
2 4 6 8 10

More Answers (0)

Categories

Find more on Mathematics 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!