Displaying even numbers in a series

3 visualizaciones (últimos 30 días)
Saif
Saif el 1 de Dic. de 2022
Respondida: David Hill el 1 de Dic. de 2022
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.

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by