Displaying even numbers in a series

3 visualizzazioni (ultimi 30 giorni)
Saif
Saif il 1 Dic 2022
Risposto: David Hill il 1 Dic 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.

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by