Displaying even numbers in a series

3 次查看(过去 30 天)
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.

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by